slideToggle reveals then hide

Currently trying to add a slideToggle function to my website

http://louislantos.com/
I want clicking the (+) text next to the heading in the tiles to reveal a description, which it does, but it almost immediately slides the content back into display: none; territory once again.

Read More

Does anyone have any idea what’s going on? I’ve been googling this for the past 2 hours, and I feel myself getting nowhere. It’s probably a very basic problem for someone a lot more skilled than I, so any help is appreciated. Perhaps a script conflict or something?

Thanks

Related posts

Leave a Reply

2 comments

  1. something else indeed is triggering that click event twice (one extra time). I couldnt find it, so i present you with this hack:

    $("#reveal-416").unbind("click").click(function () { 
       $(".revealer-416").slideToggle(1000);
    });
    

    by far not ideal, but it will solve your problem