This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Buscar en Ayuda

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

On firefox mobiile for android, I have registered a single click but the action happens only when the element is double clicked.

  • 1 respuesta
  • 1 tiene este problema
  • 2 visitas
  • Última respuesta de Kevin

more options

Html is something like this :

<ul class="login-status-container">
            <li class="signout-btn"><a href="#">Sign out</a></li>
</ul>

and here is the javascript:

$(".signout-btn a").click(function (event) {
        event.preventDefault();
        signOut();
});

It is working fine on FF desktop but on FF mobile I need to double click on the link to make it work. Single click does nothing. :(

Html is something like this : <pre><nowiki><ul class="login-status-container"> <li class="signout-btn"><a href="#">Sign out</a></li> </ul></nowiki></pre> and here is the javascript: <pre><nowiki>$(".signout-btn a").click(function (event) { event.preventDefault(); signOut(); });</nowiki></pre> It is working fine on FF desktop but on FF mobile I need to double click on the link to make it work. Single click does nothing. :(

Modificadas por cor-el el

Todas las respuestas (1)

more options