CORE-POS/IS4C

View on GitHub
documentation/Reference Code/Wedge/is4c/testkeys.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
        <script type="text/javascript">
            if (navigator.appName.indexOf('Microsoft') != -1) {
                function keyDown(e)
                {
                    var ieKey=event.keyCode;
                    alert(ieKey);
                }
                document.onkeydown = keyDown;
            }
            else {
                alert("Not IE");
            }
        </script>
    </head>
    <body>
    </body>
</html>