Skip to content

Instantly share code, notes, and snippets.

@DerKnerd
Forked from brumblebear/gist:6312620
Last active December 21, 2015 13:28
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 DerKnerd/6312660 to your computer and use it in GitHub Desktop.
Save DerKnerd/6312660 to your computer and use it in GitHub Desktop.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"><!--mce:0--></script>
<script src="toggle.js" type="text/javascript"><!--mce:1--></script>
<script type="text/javascript">
$(document).ready(function(){
$(".info").hide();
$(".trigger").click(function(){
if($('.info').css('display') == 'block')
$('.info').css('display', 'none');
else
$('.info').css('display', 'block');
return true;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment