<script language="javascript"> document.onkeyup = KeyCheck; function KeyCheck(e) { var KeyID = (window.event) ? event.keyCode : e.keyCode; if(KeyID == 113) { alert("hi"); } } </script>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)