What I would like to accomplish seems simple enough, but I have not been able to figure out how to achieve this functionality.
I have a jQuery toggle effect being applied to a navigation element called the "Quick Brew Selector." It's essentially a quick visual navigation for different beer manufacturers. Please see this in action here: http://srperrott.silverjerk.com/products/domestic/millercoors
I would like this to remain closed when you first enter into a beer page, but I feel like the transition to the next page is a bit jarring as I have some jQuery effects being applied to some elements on the page to liven up the experience. Couple this with the collapse of the Quick Brew Selector, and I feel like the experience is too jerky, or isn't smooth enough (having a hard time communicating what I find wrong with it, but I feel if the selector remains open on the next page this will resolve the problem).
I'm using a simple jQuery toggle to get the functionality I desire from the brew selector. What do I need to change in the code for the next page to load with this selector open? Here is my code thus far (I am extremely poor at jQuery, so please go easy on me!)
$(document).ready(function(){
$(".quick-brew-header").toggle(function(){
$(".zone-preface-wrapper").animate({height:165},40);
},function(){
$(".zone-preface-wrapper").animate({height:40},40);
});