Can you create $().toggle links for PHP Page Refresh?

Can you create $().toggle links for PHP Page Refresh?

Is there a way that anyone has ever seen to make a Toggle reflect an anchor value so that when the page reloads it won't be hidden?

This is the code I have..
Yet when I post something from a box, I would like the page to reload with the one that was toggled open set to open.

// for:Toggle
$(".collabToggle").toggle(function(){
   $(this).addClass("collabToggleActive");
   }, function () {
   $(this).removeClass("collabToggleActive");
});

$(".collabDetails").hide();
$(".collabToggle").click(function(){
   $(thi
    • Topic Participants

    • jesse