Skip to content

Instantly share code, notes, and snippets.

@simonista
Created July 18, 2013 22:45
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 simonista/6033766 to your computer and use it in GitHub Desktop.
Save simonista/6033766 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
</head>
<body>
<a href='#' id='controller' aria-expanded=true aria-controls='blah'>Click Me</a>
<div id='blah'>
<p>hi</p>
</div>
<script>
$(function() {
$('#controller').on('click', function() {
$('#blah').toggle();
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment