Button not working on Mobile Devices but works on PC bootstrap

51,575

Solution 1

The issue may be that you're using the onClick event which won't register on a mobile device (as you don't click - you tap).

This answer explains how to use the "touchstart" event which will work on a mobile.

https://stackoverflow.com/a/22015946/2619909

Solution 2

unfortunately neither setting cursor:pointer; nor adding a touchstart event listener

$(document).ready(function() {
  $('#button_id').on('click touchstart', function() {
    window.location.href = "/url";
  });
});

as @noa-dev and @GitPauls suggested worked for me. for reference I tested on my phone7 (ios11.4 and safari)

working solution: I set the z-index of the button to a large positive number and the button now works.

#button_id{
  z-index: 99;
}

solution found thanks to Daniel Acree https://foundation.zurb.com/forum/posts/3258-buttons-not-clickable-on-iphone. I don't know if this generalizes to all iphone/mobile devices.

Solution 3

I know this might be a weird answer. But in some cases mobile clickevents dont work unless you put the style: cursor:pointer; to your button.

Mobile clickEvents are handled very differently, the first "click" or "tap" might be interpreted as a HOVER instead of the click which you are looking for.

So try setting the CSS style of the button to : cursor:pointer;

Share:
51,575
kya
Author by

kya

I love Computing! That's me in a nutshel

Updated on July 09, 2022

Comments

  • kya
    kya almost 2 years

    I created a bootstrap button that has a link inside. Which looks like this:

    enter image description here

    When you hover on it:

    enter image description here

    This is the code inside the button:

     <div class="s-8"><button type="button" onClick="javascript:location.href = 'administration.php';">Administration</button></div>
    

    The logout button:

    <div class="s-4"><button type="button" onClick="javascript:location.href = 'logout.php';">Logout</button></div>
    

    This button works fine on the PC(IE, SAFARI, FireFox, Chrome, Opera) browser(takes me to the administration page, but it doesn't work on the Mobile devices.

    I did the same thing for the logout button, and it works fine on PC and Mobile Devices. I am now puzzled.

  • cvrebert
    cvrebert about 9 years
    Note that this generally only applies to iOS, and there are other possible workarounds; see developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mob‌​ile
  • noa-dev
    noa-dev over 5 years
    @JSMorgan can you prepare a fiddle where it's reproducable?