Skip to content

Instantly share code, notes, and snippets.

@dadamssg
Created March 18, 2014 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dadamssg/9613261 to your computer and use it in GitHub Desktop.
Save dadamssg/9613261 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
</head>
<body>
<div id="box"></div>
<input type="submit" id="Button" value="Button" />
<script src="https://code.jquery.com/jquery-2.1.0.min.js" type="text/javascript"></script>
<script>
$('#Button').click(function () {
$('#box').html('It works!');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment