Skip to content

kevinberonilla/jquery-cheat-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery Cheat Code

Add a keypress cheat code that calls a specified function on your website

See it in action here: kevinberonilla.com/demos/jquery-cheat-code


Dependencies

jQuery 1.2.6 or higher


Installation

Download the plugin via Bower or manually copy the JS files to your site, then include them in the <head> tag.

bower install jquery-cheat-code
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="js/jquery-cheat-code.min.js"></script>
</head>

Call the Script

$(document).ready(function() {
    $(document).cheatCode();
});

Play with Settings

$(document).ready(function() {
    $(document).cheatCode({ // Default values below
        code: 38384040373937396665,
        time: 500,
        callback: function() { alert('Invincibility enabled!'); }
    });
});

code
Number or string containing a combined set of key codes without spaces that represents your cheat code (default value is the Konami code sans Start button)

time
Number representing the amount of time in milliseconds allowed between sequential key presses before the input is reset

callback
Function that fires when the cheat code is successfully executed


Use the Code Generator

Included with the plugin is a generator you can use to determine your code string.