Created
February 20, 2016 03:35
-
-
Save surefirewebserv/6c2d511236ab75976dcd to your computer and use it in GitHub Desktop.
Simple Toggle jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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