Code:
$(document).on("keypress", ".className", function (e) {
debugger;
if (e.which == 13) {
debugger;
....
...
}
}
Above code triggers in IE
, CHROME
but not works in FIREFOX
Note: I had already refer the following SO links related to this, but nothing makes firefox to trigger..
onKeyPress event not working in Firefox