To listen events on elements, I think to listen on document level:
$(document).on(\'click\', \'.myclass\', function() {/*do something*/});
Another advantage of attaching a click handler directly on the element itself, is that Android seems to like that a lot better. When touching an element that has a click handler, the mobile browser will give a slight hint that something has been activated which it doesn't do when the handler is attached to another element.
It also seems to work a lot more stable.