Hello everyone,
I am very new to this forum as well as to javascript. I have following code for enter key event on my page. its working in all browsers except firefox. I have searched online a lot but nothing has worked and finally I have thought to get some help from the experts.
<script>
function checkKey()
{
if (window.event.keyCode == 13)
{
loadUrl();
}
return true;
}
</script>
onkeydown="checkKey();return true;"
any help is much appreciated.
Thank you.
Kind Regards.
I am very new to this forum as well as to javascript. I have following code for enter key event on my page. its working in all browsers except firefox. I have searched online a lot but nothing has worked and finally I have thought to get some help from the experts.
<script>
function checkKey()
{
if (window.event.keyCode == 13)
{
loadUrl();
}
return true;
}
</script>
onkeydown="checkKey();return true;"
any help is much appreciated.
Thank you.
Kind Regards.