Created
January 12, 2015 01:28
-
-
Save bradvogel/1795e0a05bf06aa516da to your computer and use it in GitHub Desktop.
JQuery example
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
<!doctype html> | |
<html> | |
<head> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<button id="hello">Hello</button> | |
</body> | |
</html> |
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
$(document).on('click', '#hello', function(){ | |
alert('Hello!'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment