Skip to content

Instantly share code, notes, and snippets.

@joeyemery
Created May 1, 2015 19:54
Show Gist options
  • Save joeyemery/a9437507f5a656184e8f to your computer and use it in GitHub Desktop.
Save joeyemery/a9437507f5a656184e8f to your computer and use it in GitHub Desktop.
jQuery
$(document).ready(function() {
$('button#show').on('click', function() {
£('p').show();
});
$('button#hide').on('click', function() {
$('p').hide();
});
});
<html>
<head>
<title>jQuery demo</title>
</head>
<body>
<p>Hello</p>
<button id="show">Show</button>
<button id="hide">Hide</button>
<!-- JS -->
<script src="jquery.js"></script>
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment