jQuery click event not working in mobile browsers

121,545

Solution 1

Raminson has a nice answer if you are already (or don't mind) using jQuery Mobile. If you want a different solution, why not just modify your code as follows:

change that LI you're having trouble with to include an A tag and apply the class there instead of the LI

<!-- This is the main menu -->
<ul class="menu">
   <li><a href="/home/">HOME</a></li>
   <li><a href="#" class="publications">PUBLICATIONS &amp; PROJECTS</a></li>
   <li><a href="/about/">ABOUT</a></li>
   <li><a href="/blog/">BLOG</a></li>
   <li><a href="/contact/">CONTACT</a></li>
 </ul>

And your javascript/jquery code... return false to stop bubbling.

$(document).ready(function(){
   $('.publications').click(function() {
       $('#filter_wrapper').show();
       return false;
   });
 });

This should work for what you are trying to do.

Also, I noticed your site opens the other links in new tabs/windows, is that intentional?

Solution 2

I know this is a resolved old topic, but I just answered a similar question, and though my answer could help someone else as it covers other solution options:

Click events work a little differently on touch enabled devices. There is no mouse, so technically there is no click. According to this article - http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html - due to memory limitations, click events are only emulated and dispatched from anchor and input elements. Any other element could use touch events, or have click events manually initialized by adding a handler to the raw html element, for example, to force click events on list items:

$('li').each(function(){
    this.onclick = function() {}
});

Now click will be triggered by li, therefore can be listened by jQuery.


On your case, you could just change the listener to the anchor element as very well put by @mason81, or use a touch event on the li:

$('.menu').on('touchstart', '.publications', function(){
    $('#filter_wrapper').show();
});

Here is a fiddle with a few experiments - http://jsbin.com/ukalah/9/edit

Solution 3

You can use jQuery Mobile vclick event:

Normalized event for handling touchend or mouse click events on touch devices.

$(document).ready(function(){
   $('.publications').vclick(function() {
       $('#filter_wrapper').show();
   });
 });

Solution 4

I had the same problem and fixed it by adding "mousedown touchstart"

$(document).on("mousedown touchstart", ".className", function() { // your code here });

inested of others

Solution 5

JqueryMobile: Important - Use $(document).bind('pageinit'), not $(document).ready():

$(document).bind('pageinit', function(){
   $('.publications').vclick(function() {
       $('#filter_wrapper').show();
   });
});
Share:
121,545
Jonathan Moriarty
Author by

Jonathan Moriarty

My name is Jonathan. I work as a web developer for The Keeney Manufacturing Company.

Updated on September 09, 2021

Comments

  • Jonathan Moriarty
    Jonathan Moriarty almost 3 years

    the jQuery click event does not seem to be firing in mobile browsers.

    The HTML is as follows:

    <!-- This is the main menu -->
    <ul class="menu">
       <li><a href="/home/">HOME</a></li>
       <li class="publications">PUBLICATIONS &amp; PROJECTS</li>
       <li><a href="/about/">ABOUT</a></li>
       <li><a href="/blog/">BLOG</a></li>
       <li><a href="/contact/">CONTACT</a></li>
     </ul>
    
    
     <!-- This is the sub-menu that is to be fired on click -->
     <div id="filter_wrapper">
       <ul id="portfolioFilter">
          <li><a href="/nutrition-related/">Nutrition related</a></li>
          <li><a href="/essays/">Essays and Nonfiction</a></li>
          <li><a href="/commissioned/">Commissioned works</a></li>
          <li><a href="/plays/">Plays and performance</a></li>
          <li><a href="/new-projects/">New Projects</a></li>
        </ul>
      </div>
    

    This is the jQuery script for mobile:

    $(document).ready(function(){
       $('.publications').click(function() {
           $('#filter_wrapper').show();
       });
     });
    

    When I click the "publications" list item on a mobile browser nothing happens.

    You can view the site here: http://www.ruthcrocker.com/

    Not sure if there are jQuery mobile specific events.