If you find that .off() .unbind() or .stopPropagation() still doesn't fix your specific issue, try using .stopImmediatePropagation() Works great in situations when you just want your event to be handled without any bubbling and without effecting any other events already being handled. Something like:
$(".bet").click(function(event) {
event.stopImmediatePropagation();
//Do Stuff
});
does the trick!