Question: Which of the following is not a mouse event?
A
B
C
D
onmousescroller
B
onclick
C
onmouseover
D
onmousemove
Note: Not available
<form onsubmit="return confirm('Are you sure to submit?')" onreset="return confirm('Are you sure to clear?')">
City:<select onchange="alert(this.value)">
<option>Dhaka</option>
<option>Khulna</option>
<option>Borishal</option>
</select>
Name:
<input type="text" onfocus="this.style.boxShadow='0 0 4px 3px rgba(0,0,0,.3)'" onblur="this.style.boxShadow='none'" />
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>