Here is my code:
jQuery('#reporter').blur(function() {
if(data.indexOf('['+jQuery('#reporter').val()+']') >= 0)
{
alert("Please do not select pseudo user as Reporter");
jQuery('#reporter').focus();
}
});
In IE, the cursor is not blinking in the "reporter" element. In Chrome, it is.
Thanks a lot!