I have a set of divs that I want to make collapsible/expandable using jQuery\'s slideToggle() method. How do I make all of these divs collapsed by
collapsible/expandable
slideToggle()
you probably can do something like this:
$(document).ready(function(){ $('div').hide(); });