Last active
August 29, 2015 14:26
-
-
Save rosalindwills/3dacda475e355c4a7847 to your computer and use it in GitHub Desktop.
001A - A plain old HTML/Javascript file without design patterns
This file contains hidden or 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> | |
<title>001A</title> | |
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> | |
</head> | |
<body> | |
<input type="button" name="my-button" id="my-button" value="CLICK ME" /> | |
<p>You have clicked <span id="click-count"></span> times.</p> | |
<script> | |
$(document).ready(function() { | |
$('#my-button').click(receiveElementClick); | |
var clickCount = 0; | |
$('#click-count').html(clickCount); | |
function receiveElementClick(e) { | |
clickCount++; | |
$('#click-count').html(clickCount); | |
} | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment