I would like to know how to generate an event as an item on a drop down list is highlighted with the mouse. Here is the code as an example:
<select>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
</select>
I tried the following without much luck...
<select>
<option onmouseover="myfunction()" value="A">A</option>
<option onmouseover="myfunctionTwo()" value="B">B</option>
<option onmouseover="myfunctionThree()" value="C">C</option>
<option onmouseover="myfunctionFour()" value="D>D</option>
</select>
I am new to HTML so please be gentle with your suggestions. I just came across this challenge as I am preparing myself for something big.
Thanks.