Here's the quick and skinny of my issue:
$("a").toggle(function() { /*function A*/ }, function() { /*function B*/ });
Inside function A
a form is displayed. If the user successfully completes the form, the form is hidden again (returning to it's original state).
Inside function B
the same form is hidden.
The theory behind this is that the user can choose to display the form and fill it out, or they can click again and have the form go back into hiding.
Now my question is this: currently, if the user fills out the form successfully--and it goes into hiding--the user would have to click on the link twice before returning to the toggle state that displays the form.
Is there anyway to programmatically reset the toggle switch to its initial state?