Difference between revisions of "Event Watcher"
Jump to navigation
Jump to search
Line 81: | Line 81: | ||
<button onfocus="test(event);" id="b1"> Do nothing </button> | <button onfocus="test(event);" id="b1"> Do nothing </button> | ||
− | <a aria-label="SSB" tabindex="0" href="#" id="a1">SSB </a> | + | <a aria-label="SSB" tabindex="0" href="#a1" id="a1">SSB </a> |
<div id="d1" tabindex="0" onclick="goSomewhere();" > div area with tabindex </div> | <div id="d1" tabindex="0" onclick="goSomewhere();" > div area with tabindex </div> | ||
<div id="d2" onclick="goSomewhere();" > div area with no tabindex </div> | <div id="d2" onclick="goSomewhere();" > div area with no tabindex </div> |
Revision as of 13:44, 21 May 2018
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, onmousedown, onmouseover
- onkeypress, onkeydown, onkeyup, touchstart, touchend, touchmove, touchcancel
Event types and their target object will be displayed in the section below. Raw event objects will also be logged to the browser console, and may be reviewed with the developer tools.
SSB
div area with tabindex
div area with no tabindex
div area with no tabindex and delegate