August 1999
Intermediate to advanced
1488 pages
72h 53m
English
onKeyUp="command"
The onKeyUp event handler for the Link object is used to handle events in which a key is pressed and then released.
Listing 7.368 shows an example of how the onKeyUp event handler is used. The onKeyUp event handler is invoked any time a key is pressed and released on the link.
<html> <head> <title> Using the onKeyUp event handler of the Link object</title> </head> <body> Highlight the link, press a key and let it up. <form name="form1"> <a href=http://www.mcp.com:80/foo?something#foobar onKeyUp='alert("You let the key up")'> http://www.mcp.com:80/foo?something#foobar</a> <br><br> </form> ... |
Read now
Unlock full access