spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column10


Capturing Events

Developer News
Mandrake Linux Founder Back, Virtually
Amazon: We're a Technology Company
Sun Expands MySQL With Closed Source

Internet Explorer 4.0x doesn't provide an explicit function for capturing events at the window or document level. An event is captured by an object when the event reaches it, provided that the object has an event handler that processes the event. If the object doesn't have such an event handler, the event is released.

You may recall from Column 9 that Navigator 4.0x features two methods that capture and release events:

  • captureEvents()
  • releaseEvents()

In Internet Explorer 4.0x you simply need to specify an event processing function to capture an event. The following script segment captures all click events that occur on the document:

<SCRIPT LANGUAGE="JavaScript">
<!--

document.onclick = functionName;

// -->
</SCRIPT>

For example, if you put the following script in your HTML document, an alert dialog box pops up when you click anywhere on the document:

<SCRIPT LANGUAGE="JavaScript">
<!--

function processClicks() {
  alert("Thank you for clicking the mouse button.");
}

document.onclick = processClicks;

// -->
</SCRIPT>

http://www.internet.com

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

webref The latest from WebReference.com Browse >
Popular JavaScript Framework Libraries: An Overview - Part 3 · Accessing Your MySQL Database from the Web with PHP · Working with the DOM Stylesheets Collection
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Fixing MySQL Replication · Firewall Guide: First Steps to Securing the Enterprise · VoxOx Tames the Tumultuous Communications Tangle


Created: December 30, 1997
Revised: December 30, 1997

URL: http://www.webreference.com/js/column10/capture.html