Skip to content

Instantly share code, notes, and snippets.

@rosalindwills
Last active August 29, 2015 14:26
Show Gist options
  • Save rosalindwills/3dacda475e355c4a7847 to your computer and use it in GitHub Desktop.
Save rosalindwills/3dacda475e355c4a7847 to your computer and use it in GitHub Desktop.
001A - A plain old HTML/Javascript file without design patterns
<!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