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

Striped Table with Rollovers

In Chapter 3, I showed you how to add stripes to the rows of a table. You can see the complete JavaScript code on page 86. Now I’ll modify this code so that each table row highlights as the cursor moves over it.

I’ll start by modifying the HTML markup in two places. I’ll first add a link into one cell of the table.

<td><a href=http://ajaxinaction.com>Ajax in Action</a></td>

It’s very common to have links and other elements in a table cell, and the code needs to be robust enough to cope with such circumstances. This one link will represent an additional level of content hierarchy within the tds while I test.

Using an Element as a Debugging Tool

Next, I’ll manually add a p tag with the attribute id=”display” right after the table.

</table>
<p id="display">Display Area</p>
</body>

This element will display the kinds of test values that I have displayed with alert dialogs in earlier examples. When I start testing these rollovers, events will be generated so rapidly that I would soon tire of clicking the OKs in all those alert dialogs. Instead, I’ll write my test results into the text of this element, which currently reads “Display Area”, and see the results right in the page—no alerts needed. Now, any time I want to check a value, I can use this line of code

document.getElementById("display").innerHTML = valueToDisplay

and the words “Display Area” will be replaced by the value of valueToDisplay. Just remember, whenever you see

document.getElementById("display").innerHTML = someValue

in subsequent code, you’ll know I am just displaying a test value.

The final preparatory step is to add a CSS style that will be the highlight background color for the rows—in this case, white.

114_prog01.jpg

The sole purpose of the code I’ll write is to add and remove the stripe_table class name from the table rows as the cursor passes over them.

Mouse Events

JavaScript is very chatty when it comes to mouse events. Every time the mouse moves on or off an element, or even moves the smallest amount, events are fired off describing these activities.

To detect if the cursor is over a table row, I’ll use the mouse events mouseover and mouseout, which occur when the mouse enters and leaves an element, respectively.

Event Delegation

Because events bubble up, I’ll add the two event listeners for these events at the tbody level. I want only table rows within the body of the table to highlight, so tbody is the highest level at which I can detect them without also receiving events from the table rows that are in the header, which I don’t want to stripe.

I am already getting the tbody element in the existing striping code, so it’s easy to add event handlers in the line right after that one.

Code 4.13. table_stripe_roll1.html

115_prog01.jpg

In the first piece of highlighted code, I again use the addEvent helper function to add the event listeners, specifying that the mouseover and mouseout events will be attached to the tbody element. Both of these events will call the same function, checkEventSource.

As its name suggests, the checkEventSource function will check which element was the source of the event when the mouse moves over the table rows and then add the hilite class to the related table row. That functionality will come later. For now, as you can see in the second piece of highlighted code, I’ve added the checkEventSource function and within it simply used the “Display Area” element to display a bit of text confirming that the function was called.

When I first load the page, I see the “Display Area” default text in the lower-left corner, as shown in Figure 4.10.

Figure 4.10

Figure 4.10 The page with the default Display Area text.

When I move the cursor over the bottom row of the table, as shown in Figure 4.11, the checkEventSource function is called and the “Display Area” message is updated.

Figure 4.11

Figure 4.11 The Display Area text is replaced with the text from the function.

This confirms that at least one of the two event handlers, mouseover, is attached successfully. I can be fairly confident that mouseout was too—I’ll soon find out.

From the perspective of this code, I know that the mouseover event is bubbling up to the event listener on the tbody, but I don’t know the triggering element, so I don’t yet know which row I need to stripe.

Determining the Target Element

The next step is to determine the target element—the element that is actually triggering the event. To do this, I need to get the target element’s nodeName, which in the case of an element gives the name of the tag—a, td, or tr, for example.

Code 4.14. table_stripe_roll2.html

checkEventSource:function(e) {
var evt = e || window.event;
var evtTarget = evt.target || evt.srcElement;
document.getElementById("display").innerHTML =
   evtTarget.nodeName;
}

You’ve seen the first two lines of code within this function before—they get the event target. The highlighted code in the third line simply gets the node name of that target element; you can see the node names displayed in the lower-left corners of Figures 4.12 and 4.13.

Figure 4.12

Figure 4.12 When the cursor is over a table row, the event target is a table cell.

Figure 4.13

Figure 4.13 When the cursor is over a link within a table row, the event target is the link.

This test shows that the table row elements don’t trigger events when the mouse goes over them, because they are entirely filled with their child tds. There simply is nowhere you can place the cursor to get the tr to trigger a mouse event. The target element—the element directly under the mouse—will always be the td unless you explicitly add padding or margins to create space between it and the tr. The td, because it’s a child of the tr, will always be on top of the tr in the element stacking order and will therefore always be the target of any mouse event. You can also see in Figure 4.14 that if the mouse moves over a link within a td, as you might expect, that link will be the target.

Figure 4.14

Figure 4.14 The event bubbles up to the event listener on tbody.

The most important thing that this test shows is that the target of the event, be it the td, a link, or some other element that might appear within a table cell, is a child of the row that you want to highlight.

Traversing the DOM

To find the event target’s ancestor table row so I can apply the row_hilite CSS class to it, all I need to do is start moving up the DOM from the target element until I find an element with the node name tr and apply the highlight class to that element. This process of moving up, down, or across the DOM to an adjacent element is known as traversing.

Code 4.15. table_stripe_roll3.html

119_prog01.jpg

You can see the way I do this in the preceding highlighted code. I simply change the event target property from the target element to the parent of that element. This effectively moves me up the DOM—if the target was a, a link, I am now at the level of its parent table cell. I keep moving up like this until my test returns tr. (Note that I use the String method toLowerCase to convert the node name to lowercase for cross-browser compatibility. Some browsers, such as Firefox, return the node name in uppercase, as you can see in the lower-left corners of Figures 4.14 and 4.15.)

Figure 4.15

Figure 4.15 Even though the cursor is over a link, the reported event target is now the table row.

By the time I get a tr and the loop stops, my event target is already set to tr because each time the loop runs, I set the target to the parent element of the current target element before the loop determines if it should run again. The event target is now set to the element I want to modify and is no longer set to the original target of the event. In short, now when the mouse rolls over the table, the target element, whether a link or a table cell (or anything else), is instantly changed to the tr ancestor of that target element, as illustrated in Figure 4.15.

Adding the Highlight

Now that I have the row I want to highlight as the reported target for the mouseover and mouseout events, a few lines of code within a switch statement are all that’s needed to add and remove the hilite class.

Code 4.16. table_stripe_roll4.html

120_prog01.jpg

Figure 4.16 shows that the row that has the cursor over it now highlights, and the rollover effect code is complete.

Figure 4.16

Figure 4.16 Each row now highlights when the cursor is over it.

This is an good example of event delegation, because three separate elements are involved. The event happens to the link, the event handler attached to the table head responds to the event, and the link’s table row is modified. This relationship is illustrated in Figure 4.17.

Figure 4.17

Figure 4.17 The checkEventSource function determines the parent table row of the event target.

You can see in the code that before I set the row_hilite class on the tr, I store any class that is currently on that element. This is because there is a 50 percent chance that the row already has the odd class that does the striping. So, if the event handler is mouseover, which means I need to add the row_hilite class, I put any existing class name in a variable called oldClass and then change the class on the element to row_hilite. When the user moves off the row and the mouseout handler fires, I set that row back to the class name in the oldClass variable.

As illustrated in the previous diagram, what is really interesting about this example is that the element with the event listener is tbody, the element that triggers the event is td or a, and the element that is modified as a result of the event is tr. By combining event listeners, event delegation, event bubbling, and DOM traversing, you can have a single event handler manage events from dozens, hundreds, or thousands of child elements and then have the event affect any element that you choose.

Now that you’ve seen some ways to work with mouse events, let’s take a look at the other way the user interacts with your application—the keyboard.

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