I have a page with image, image has some image map, I want to submit form when user mouseover that image map, my code is like this:
And I write sub overf4() in vb script
when mouse over form submit several times until mouse in on the point I want to sumbit iust one time
can u help me?
Code:
<img src="Images/floor4.jpg"usemap="#planetmap" id="IMG1"> <map id="planetmap" name="planetmap"> <area id=f4 shape="circle" coords="65, 93, 11" alt="CF4588" onmouseover=overf4()>
Code:
sub overf4() document.frmSelect.submit() end sub
can u help me?
Comment