I need some help with the callbacks. For some reason, they don\'t work really well. I\'m making a game with jQuery. I have a <
<
Don't use the click(), use on('click') and attach it to the document.
click()
on('click')
Creating a handler this way, will ensure that any new elements will be able to trigger the event.