Super simple jQuery Toggler


/ Published in: jQuery
Save to your folder(s)

Used here: http://www.criteriondg.info/wordpress


Copy this code and paste it in your HTML
  1. $(document).ready(function(){
  2.  
  3. $("#tags").click(function () { //select id or class you want to make toggle
  4. $("#tag_cloud").slideToggle("700"); //select time effect and id or class to appear/disappear
  5. });
  6.  
  7. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.