This function use to check enter on form with jquery
function check_key(e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
if(keycode == 13){
return false;
}}
This function use to check enter on form with jquery
function check_key(e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
if(keycode == 13){
return false;
}}
Category:
Tagged with:
Share it: