영원한사랑


SHIFT + F

<html>
<head>
</head>
<body>
<script>
<!--
function callDic(){
        if (event.shiftKey) {
                if (event.keyCode == 70) {
                        var w=window.open('http://oxtag.com,'tagpia','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=600,height=350&COMM_001=0000100000');
                        w.focus();                                                                                                 
                }
        }
}
document.onkeydown=callDic;
//-->
</script>
SHIFT + F 를 누르면 새창이 열려요;;;
</body>
</html>



ALT + F4

<html>
<head>
</head>
<body>
<script>
<!--
function callDic(){
    if (event.altKey) {
        if (event.keyCode == 115) {
            var w=window.open('http://oxtag.com','tagpia','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=600,height=350');
            w.focus();                                                  
        }
    }
}
document.onkeydown=callDic;
//-->
</script>
ALT + F4 를 누르면 새창이 열려요;;;
</body>
</html>



키코드는 아래 URL 참고..

http://oxtag.com/html/ex/keycode3.html