I want to remove the blinking of cursor from read only fields as it gives the user experience that they can edit the text . I have written some code that is working on firefox but not working on IE.
$("[readonly]").live('focus',function(e) {
$("[readonly]").blur();
return false;
});