Wednesday, February 20, 2008

JavaScript For Disabling mouse middle button on Dropdown

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.

Monday, February 18, 2008