javascript if two events fired after eachother only execute method once code example
Example: i get two times event click of button javascript
$(".bet").unbind().click(function() {
//Stuff
});
$(".bet").unbind().click(function() {
//Stuff
});