Difference between revisions of "Event Watcher"
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
function run() { | function run() { | ||
var d = document.createElement("div"); | var d = document.createElement("div"); | ||
− | + | var t = document.createTextNode("hello"); | |
+ | d.appendChild(t); | ||
document.body.appendChild(d); | document.body.appendChild(d); | ||
} | } |
Revision as of 13:44, 10 August 2015
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
- onkeydown