Difference between revisions of "Event Watcher"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
Move through the fields below and watch the events that are sent by the browser. For example, use with AT to find out what events are being fired. | Move through the fields below and watch the events that are sent by the browser. For example, use with AT to find out what events are being fired. | ||
+ | * onfocus | ||
+ | * onblur | ||
+ | * onclick | ||
+ | * ondbclik | ||
+ | * onmouseup | ||
+ | * onkeypress | ||
<html> | <html> | ||
Line 17: | Line 23: | ||
<body> | <body> | ||
<input type="text" onfocus="test(event);" onblur="test(event);" onclick="test(event);" ondbclick="test(event);" onmouseup="test(event);" onkeypress="test(event);" /> | <input type="text" onfocus="test(event);" onblur="test(event);" onclick="test(event);" ondbclick="test(event);" onmouseup="test(event);" onkeypress="test(event);" /> | ||
− | <button> Test </button> | + | <button onfocus="test(event);" onblur="test(event);" onclick="test(event);" ondbclick="test(event);" onmouseup="test(event);" onkeypress="test(event);"> Test </button> |
− | <a href=" | + | <a href="http://www.ssbbartgroup.com" onfocus="test(event);" onblur="test(event);" onclick="test(event);" ondbclick="test(event);" onmouseup="test(event);" onkeypress="test(event);"> test </a> |
<h3>Log area</h3> | <h3>Log area</h3> | ||
<div id="d1"> | <div id="d1"> |
Revision as of 15:30, 14 April 2014
Move through the fields below and watch the events that are sent by the browser. For example, use with AT to find out what events are being fired.
- onfocus
- onblur
- onclick
- ondbclik
- onmouseup
- onkeypress