First of all, you should not use .click() as it is deprecated. Use instead
$('#id').on('click', function(event) {
Are elements dynamically inserted using javascript? If so, you will need to use event delegation, as yshrsmz suggests. In addition, in your example, you write #element , this points to an element with the identifier element , you should use only one identifier in dom. Instead, apply the class to all the elements that should trigger the click.
Make sure all the bindings are set on the finished document.
It's probably worth running your HTML code through the W3C validator to make sure that it is all valid. This can lead to errors if not.
Finally, check your Android log code, see if there are any error messages when clicking items.
source share