jQuery is like my Wife... It never listens! [Solved]

jQuery is like my Wife... It never listens! [Solved]



Bit stumped by this one. I have searched through the forums here and although there are some solutions that almost hit the mark, none seem to solve my problem.

Issues:

1. How to get a div to be hidden before the page loads? (I've solved this one!)

$(document).ready(function(){$('#row2').hide(); = WOHOO!

---

2. How to (after a fairly short delay) have the div open (show) of it's own accord once everything else in that div has loaded, yet still be controlled by the toggle function. (I am completely baffled by this one)


=== My script is as follows: ===

$(document).ready(function(){
$('#row2').hide();
$("button").click(function () {
$("#row2").slideToggle("slow");
});
});

Any thoughts on what I need to add? I will be most grateful to the genius that assists!

Many thanks
James