Hello,
I have a div which contains an input button and an image. The image is centered over the button inside of the div.
I am trying to bubble the image mouseover to the button so when the image is moused over, the button's inner highlight turns orange (default mouseover behavior). I can't seem to cause the default mouseover to fire... I can add my own code, but I don't think there is a way I can force the inner highlight to appear.
Any help would be appreciated.
Thanks,
-Kevin
I have a div which contains an input button and an image. The image is centered over the button inside of the div.
Code:
<div>
<input id="btnHistory" type="button" value="" onclick="DoSomething(this);" />
<img id="imgArrowDown" src="Images/DropDownArrow.gif" style="margin-left:-7px;margin-top:-9px;" onclick="FireButtonClick(this)" onmouseover="FireMouseOver(this);" onmouseout="FireMouseOut(this);" />
</div>
I am trying to bubble the image mouseover to the button so when the image is moused over, the button's inner highlight turns orange (default mouseover behavior). I can't seem to cause the default mouseover to fire... I can add my own code, but I don't think there is a way I can force the inner highlight to appear.
Any help would be appreciated.
Thanks,
-Kevin