Is there any way to maintain the slidetoggle state across requests?
We have multiple tables that are expanded/collapsed. When we press the submit button we would like to maintain which table is expanded/collapsed.
$("#dbheader").click(function () {
$(".dbmiddle").fadeToggle("slow");
});
$("#scheader").click(function () {
$(".scmiddle").fadeToggle("slow");
});
$("#cdheader").click(function () {
$(".cdmiddle").fadeToggle("slow");
});
I can do it with interaction with the server program, but trying to avoid that ...
Thanx ...