function Stop() { return false; }
var tmp = null;
function ondropdownfocus()
{
tmp = document.onmousewheel;
document.onmousewheel=Stop;
}
function ondropdownlostfocus()
{
document.onmousewheel=tmp;
}
--------------------
Call this function on onfocus & onblur of dropdown box in aspx.
No comments:
Post a Comment