Publishers of technology books, eBooks, and videos for creative people

Home > Articles > Web Design & Development > Ajax and JavaScript

Events in JavaScript

This chapter is from the book

The Up and Down Life of Keys

It’s easy to have a simplistic view of the keyboard: The user just presses a key and a character appears, right? The reality—JavaScript’s reality, at least—is rather more complex. A keystroke is several discrete events, each with its own event message. When a key is pressed, the sequence of events is as follows:

  1. keydown is sent when the key makes contact and is immediately followed by keypressed.
  2. keypressed is a general event that summarizes a complete key press/release cycle.

    Then the character actually appears at the location of the keyboard’s focus.

  3. keyup occurs when the key breaks contact.

    If you hold the key down until it starts to repeat the character, keydown and keypressed repeat as well. (I think it’s wrong for keypressed to repeat here, but it does.)

Generally, I work with keyup or keydown. Which one I use depends on the circumstance. Usually, I’ll use keyup but sometimes keydown when I want to test the character before it appears onscreen. For example, if you have a numbers-only text field, you might use keydown so you can test the character, and reject it without letting it appear in the field if it is not a number.

Text Fields with Character Limits

Those of you who have tried to pack the excitement of what you are doing right now into a 140-character Twitter tweet have encountered a text field with a character limit. As soon as you type that hundred-and-forty-first character, the Update button dims and you can’t send your tweet. Ahhhh, now the world will never know all the tasty details of that bologna sandwich!

Limiting text input can help ensure you are getting correctly sized data (U.S. zip codes and phone numbers for example) and compel those who would rant via your site to at least organize their thoughts.

I’ll demonstrate how to set character limits on fields with a textarea (multiline) text field, as shown in Figure 4.18.

Figure 4.18

Figure 4.18 This is the finished example. A display below the text area shows how many more characters the field will accept.

For this example, I’ve limited the field to 20 characters, but this can easily be changed.

The strategy for designing such a control is simple.

  1. Each time the user types a character in the field, count the total number of characters in the field.
  2. Update an onscreen display so users can see how many characters they still have left to type.
  3. If the limit is reached, highlight the onscreen display to warn the user and delete any characters over the limit.
  4. If the user deletes characters to reduce the text to below the maximum, remove the warning highlight.

This layout requires some simple HTML and CSS, which you can see in the download file. The only HTML that interacts with the JavaScript code is the text area and the display text.

<textarea id="msg_field" cols="35" rows="3"></textarea>
<p id="display"></p>

The p tag is currently empty, but I will add text into it as I go along. The initial code file, text_field_max_chars1.html, is displayed in the browser in Figure 4.19.

Figure 4.19

Figure 4.19 The initial markup for the text field displayed in the browser.

Setting Up the Message Display

Here’s a start to the code.

Code 4.17. text_field_max_chars2.html

124_prog01.jpg

In this first step I set up theMaxChars property to specify the character count limit (highlighted) and define the setup method, which is called when the page loads. For now, this method simply passes a text string stating the character limit to the displayMsg helper function (also highlighted), which then updates the display with the text string, as shown in Figure 4.20.

Figure 4.20

Figure 4.20 The display now indicates the 20-character limit defined by theMaxChars property.

The next step gets the text the user types in the field so I can determine how many characters have been typed. To do this, I’ll set an event listener on the field that calls its function on keyup events; in other words, the function will be called every time the user types a character into the field.

Code 4.18. table_stripe__roll3.html

125_prog01.jpg

There is nothing here you haven’t seen in earlier examples in this chapter. In the first block of the preceding highlighted code, I get the message field and then add an event listener to it that calls the checkField function whenever the keyup event occurs. To test that this arrangement is working, I’ll have the checkField function display the user text in the display area (second highlighted code block). You can see this happening in Figure 4.21.

Figure 4.21

Figure 4.21 The keyup event successfully triggers a function that, for now, simply shows the text in the display area below.

Every time the user types a character, the text in the text field immediately appears in the display area below. Capturing the text every time a character is added is crucial to the functionality I am creating here.

Monitoring the Character Count

Now it’s time to do something more useful with this capability than to simply display the text—let’s add some real functionality to the checkField method.

Code 4.19. text_field_max_chars4.html

127fig01.jpg

I’ve removed the test display code and replaced it with a piece of code that deletes any characters in the field that exceed the number defined by theMaxChars property—20.

To do this, I use a String object method substring, which returns part of a string—known as the substring. The substring method accepts two parameters: the index of the first character to be returned and the length of the substring.

The highlighted line states “return a 20-character substring of the text in theText object starting from index 0 (the first character), and then set the contents of theField to that text.”

This code is a sort of circular reference: The text is being read from the field in which the user is typing, trimmed to the first 20 characters, and put back into the same field. When there are less than 20 characters in the field, this has no visible effect. Once the user exceeds 20 characters, however, the effect is that the twenty-first and subsequent characters are deleted as fast as the user types them.

It’s impossible to show this effect in a static screenshot, but if you open text_field_max_chars4.html in your browser and start typing, you’re 20 characters away from seeing it for yourself.

While this achieves the objective of limiting the amount of text that can be typed in the field, it’s not a very nice user experience to simply delete the user’s text without giving some kind of warning. To help the user understand the rules of the field, let’s first create a countdown in the display that states how many characters can still be typed.

Code 4.20. text_field_max_chars5.html

128_prog01.jpg

There is actually no point in updating the text in the field until the user exceeds the character limit, so I’ve added an if statement to control when the field is updated. Once the limit is exceeded, I’ll trim the text. As long as the character count is below the maximum allowed, I’ll update the message below the field to read “x of y characters left.” Figure 4.22 shows that the user is still below the 20-character limit.

Figure 4.22

Figure 4.22 Now there is a countdown display that shows how many more characters can be typed.

As a finishing touch, when the limit is exceeded, I’ll make the display text bold and bright red. I’ll add this one line to the CSS.

Code 4.21. text_field_max_chars6.html

div#sign_up #display.hilite {color:red; font-weight:bold;}

Then I’ll add the hilite class onto the display element when the limit is reached, as shown in Figure 4.23, and remove it if the user deletes enough text to get back below the limit again.

Figure 4.23

Figure 4.23 The display text now highlights when the character limit is exceeded.

The Finished Code

Here’s the complete code for this example with the two additional lines of JavaScript.

130_prog01.jpg

That completes this example and this chapter.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020