Jquery mobile click event doesn't work
click, events, jquery, mobile
Solution
Use touch events
$(document).on('click touchstart', '.brand', function() {
alert('ok');
});
http://jsfiddle.net/9x9fm/
Problem
When i try to trigger an event click with a mobile browser the "click" doesn't work. With Firefox for Desktop works fine. This is my html: ``` <li class='brand'></li> ``` And this is my jquery: ``` $('.brand').click(function() { alert('ok') }); ``` Can you explain me? Thanks.