jquery each on event being added multiple times code example
Example: i get two times event click of button javascript
$(".bet").unbind().click(function() {
//Stuff
});
$(".bet").unbind().click(function() {
//Stuff
});