Level 39
Level 41
8 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
<HTML-element event-attribute="myFunction()">
event handler attributes with JavaScript code
<button onclick='JScode'></button>
event on click
<button onclick="this.innerHTML = assignedValue"></button>
changes the content of its own inner element with
<button onchange='JScode'></button>
event when an HTML element has been changed
<button onmouseover='JScode'></button>
event when the user moves the mouse over an HTML element
<button onmouseout='JScode'></button>
event when the user moves the mouse away from an HTML element
<button onkeydown='JScode'></button>
event when the user pushes a keyboard key
<button onload='JScode'></button>
event when the browser has finished loading the page