JavaScript verhindern ein Ereignis, das mehrmals ausgelöst wird

$(".bet").click(function(event) {
  event.stopImmediatePropagation();
  //Do Stuff
});
Good Gnat