Hi All,
I have written a simple JavaScript method to hide the script warning message. This function needs to be called onload of the email form. This is quite unsupported as Microsoft does not recommend using the document object methods like getElementById etc. Use it at your own risk.
//This method hides the script error message on email form
//call this method onload of the email form
function hideScriptErrorMsgBlock() {
var _errorMsgBlock = document.getElementById("trBlockMsg");
if (_errorMsgBlock != null && _errorMsgBlock != undefined) {
document.getElementById("trBlockMsg").style.display = 'none';
}
}
Cheers,
Palani