Hello,
I'm working on a page with mutiple divs that hide via the following jQuery code:
// Special Offers Page
$(".details").click(function(){
$(this).parents("div.special-offer").children(".hiddencontent").toggle();
return false;
});
Here's the page for who needs to see the entire code: http://www.daraayuvillas.com/special-offers/
It works just fine in Chrome/Safari but bugs in Firefox - I just can't find an explanation for which it wouldn't work.
Thanks in advance!