»
EnglishFrenchVietnamese

Print - A Hidden Message - JavaScriptBank.com

Full version: jsB@nk » Snippet » A Hidden Message
URL: https://www.javascriptbank.com/a-hidden-message.html

A Hidden Message © JavaScriptBank.comJust type the word "code" and an action will activate! This script activates a JavaScript when you type some code.

Full version: jsB@nk » Snippet » A Hidden Message
URL: https://www.javascriptbank.com/a-hidden-message.html



JavaScript
<SCRIPT language=javascript>/*A Hidden Message, by YardenST*/      window.onload=restart      var code = "code"; //no spaces no special chars      chars=code.split("")      codes= new Array();      for(var i=0;i<chars.length;i++)        {             if (code.charCodeAt(i)*1 >= 48 && code.charCodeAt(i)*1 <=57)            {               codes[i]=code.charCodeAt(i);                        }           else            {               codes[i]=code.charCodeAt(i)-32;            }                   }      function restart()       {           i=0;           document.onkeydown = function(event)                                   {                                     check(i)                                   }       }      function check(currI)       {                     if(event.keyCode==codes[currI])             {                if (i+1==codes.length)                 {                    doAction()                    restart()                 }              document.onkeydown = function(event)                                    {                                             i++;                                          check(i);                                                   }             }           else            {                     restart();            }       }      function doAction()       {            alert("You typed the code!")       }    </SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
Just type the word <b>"code"</b> and an action will activate<!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->