click below
click below
Normal Size Small Size show me how
JAVASCRIPT WEEK 5
| Question | Answer |
|---|---|
| var today =new Date(); How can I get the current hour? | today.getHours(); |
| <input id="inputID" type="text" onkeydown="functionTest()"> Give a description of the code above? | When you press any key on the input field "inputID" of the form the function "functionTest" is triggered. |
| onclick(); In which case the 'onclick' event occurs? | When you click on an element. |
| When the 'onmouseover()' event occurs? | When you move the mouse pointer over an element. |
| When the 'onmouseout()' event occurs? | When you move the mouse pointer out of an element. |
| When the 'onmouseup()' event occurs? | When you release a mouse button over an element. |
| When the 'onfocus()' event occurs? | When an element gets focus. |
| When the 'onreset()' event occurs? | When a form is reset. |
| When the 'onsubmit()' event occurs? | When a form is submitted. |
| When the 'onload()' event occurs? | When an object has been loaded. |
| When the 'onscroll()' event occurs? | When an element’s scrollbar is being scrolled. |
| Which event occurs when you resize the document view? | onresize(); |