Marchy
Marchy

Reputation: 787

Bootstrap Modal not working on ios?

The modal from bootstrap doesn't seem to work in iPhone but in Android it does.

There is data from this happening? Someone can check if this is happening on any other devices?

check here: http://citmalumnes.upc.es/~marcelba/3r/Nuevo%20directorio/p%C3%A0gina%20principal.html

Upvotes: 2

Views: 3499

Answers (1)

nickdos
nickdos

Reputation: 8414

I think the problem is the HTML for your login link (when screen is small enough to trigger the responsive phone/tablet mode). In Chrome the cursor stays as a pointer (not hand) when I mouse over the login link in the menu:

<a data-toggle="modal" data-target="#loginform">Login</a>

Try adding a href attribute so it looks like a normal link:

<a href="#" data-toggle="modal" data-target="#loginform">Login</a>

Upvotes: 7

Related Questions