jQuery click events firing multiple times

To make sure a click only actions once use this:

$(".bet").unbind().click(function() {
    //Stuff
});

Leave a Comment