Skip to content

Instantly share code, notes, and snippets.

@surefirewebserv
Created February 20, 2016 03:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save surefirewebserv/6c2d511236ab75976dcd to your computer and use it in GitHub Desktop.
Save surefirewebserv/6c2d511236ab75976dcd to your computer and use it in GitHub Desktop.
Simple Toggle jQuery
jQuery(document).ready(function(){
jQuery(".toggle-script").click(function (e) {
e.preventDefault();
jQuery("#toggle-show-more").toggle("blind");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment