I\'m attempting to write a video poker game in Javascript as a way of getting the basics of it down, and I\'ve run into a problem where the jQuery click event handlers are f
When I deal with this issue, I always use:
$(".bet").unbind("click").bind("click", function (e) { // code goes here }
This way I unbind and rebind in the same stroke.