ShikkurDude
Programmer
I have the following two bits of code:
and
Here's the problem... When the user clicks on that cancel button - even if it's not a complete click - rather the user just presses the mouse button down on the cancel button - but releases the mouse button when not on the cancel button, a funny thing happens: a blinking caret/cursor begins flashing to the immediate left of the cancel button, and continues doing so until the user clicks somewhere else on the page.
I don't want that flashing cursor at all; how can I get rid of it?
Thanks so much,
E.
Code:
<INPUT style="BACKGROUND-POSITION-X: center; BACKGROUND-IMAGE: url([URL unfurl="true"]http://web.amg.advo-health.com/commonimages/cmdcancel.gif);[/URL] WIDTH: 64px; CURSOR: hand; BORDER-TOP-STYLE: none; BACKGROUND-REPEAT: no-repeat; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; HEIGHT: 24px; BORDER-BOTTOM-STYLE: none" onclick="ShowCancelMenu()">
Code:
function ShowCancelMenu()
{
var CancelMenu
CancelMenu = document.getElementById('CancelMenu')
CancelMenu.style.visibility = ''
}
I don't want that flashing cursor at all; how can I get rid of it?
Thanks so much,
E.