One ofthe list form field isnt becoming read only with IE but it is working in Chrome.
Here is the script we are using
$(document).ready(function() {
$(':checkbox[readonly]').click(function(){
return false;
});
$('nobr:contains("Comments and Directions")').closest('td').next().find("*").attr("readonly", "readonly"); // IE
$('nobr:contains("Comments and Directions")').closest('td').next().css("pointer-events" , "none"); // Chrome
$('nobr:contains("SIAI")').closest('td').next().find("*").attr("readonly", "readonly"); // IE
$('nobr:contains("SIAI")').closest('td').next().find("*").css("pointer-events" , "none");
});
Nanddeep NachanPosted Aug 27, 2018, 4:49 AM
Aakash MauryaPosted Aug 23, 2018, 8:48 AM