Difference between revisions of "Event Watcher"
Jump to navigation
Jump to search
(Change "SSB" to "Level Access") |
|||
Line 82: | Line 82: | ||
<button onfocus="test(event);" id="b1"> Do nothing </button> | <button onfocus="test(event);" id="b1"> Do nothing </button> | ||
− | <a aria-label=" | + | <a aria-label="Level Access" tabindex="0" href="#a1" id="a1">Level Access</a> |
<label><input type="checkbox" id="c1" >Order now!</label> | <label><input type="checkbox" id="c1" >Order now!</label> | ||
<div id="d1" tabindex="0" onclick="goSomewhere();" > div area with tabindex </div> | <div id="d1" tabindex="0" onclick="goSomewhere();" > div area with tabindex </div> |
Revision as of 17:17, 28 September 2021
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.
Level Access
div area with tabindex
div area with no tabindex
div area with no tabindex and delegate