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
In my case I had loaded the same *.js file on the page twice in a tag, so both files were attaching event handlers to the element. I removed the duplicate declaration and that fixed the problem.