Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. //Hide (Collapse) the toggle containers on load
  4. $(".views-exposed-widgets").hide();
  5.  
  6. //Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
  7. $("h2.refine-search").click(function(){
  8. $(this).toggleClass("active").next().slideToggle("fast");
  9. return false; //Prevent the browser jump to the link anchor
  10. });
  11.  
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement