Skip to content

Instantly share code, notes, and snippets.

@futoase
Created November 26, 2012 17:23
Show Gist options
  • Save futoase/4149492 to your computer and use it in GitHub Desktop.
Save futoase/4149492 to your computer and use it in GitHub Desktop.
ghost-test.js
console.log('loaded ghost-test.js');
$(document).ready(function (){
ghostTest.init();
});
var ghostTest = (function (){
return {
init: function () {
$("#fire").click(function (){
$('input[name="smile"]').val("precure!");
});
}
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment