Hi,
I have a JScript statment which is working very fine on IE browser but giving error on Chrome browser. Here is the JScript:
document.getElementById("new_customfield").attachEvent("onkeypress", KeyPress);
How does it need to be tackled on Chrome?
The error I am getting is:
I even tried this:
document.getElementById("new_customfield").attachEvent("onkeydown", KeyPress);
But still no luck.