Created
November 26, 2012 17:23
-
-
Save futoase/4149492 to your computer and use it in GitHub Desktop.
ghost-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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