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
If you're calling that function on each "click", then it's adding another pair of handlers on each call.
Adding handlers with jQuery just isn't like setting the value of the "onclick" attribute. One can add as many handlers as one desires.