1.

Suppose you have written a JavaScript function named check Data(). You want to execute the function when the mouse pointer is just moved over the button. How will you complete the following to do the same?<INPUT Type=”button”_____= “checkData()”>

Answer»

<NPUT Type=”button” onMouseEnter = “checkData()”>



Discussion

No Comment Found