Skip to content

Instantly share code, notes, and snippets.

@pebreo
Last active December 29, 2015 21:09
Show Gist options
  • Save pebreo/7728240 to your computer and use it in GitHub Desktop.
Save pebreo/7728240 to your computer and use it in GitHub Desktop.
jQuery + HTML skeleton
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript">
$(function() {
$('#mybutton').click(function() {
});
});
</script>
</head>
<body>
<button id="mybutton"> Click me </button>
<div id="output"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment