views:

36

answers:

1

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!

+1  A: 

Firefox does not like the positioning of your floats. It seems to work if you move the float:left from the class .special-offer to it's parent div node with the class .post

sod