I am having a Grid in my page and want to do some operation when the mouse moves on the header of the grid in client side
this is my script
$("th").mousemove(function(event){ alert("moved");})
In IE11 the if i place the mouse pointer on the header the alert message is thrown untill the focus is lost but in Chrome the alert message is thrown only when the mouse is moved over the header