Toggle Button Does Not Work On IOS /...

User 2710679 Photo


Registered User
9 posts

Hi CoffeeCuppers,

I've got a toggle button that works on desktop browsers and non-Iphone type phones, however on Iphone/IOS the button does nothing.

Anyone have this issue... or even better, a solution?

Here is a link to the site I'm working on:
www.ipsorhino.com/traf-progress

Here is a link to download my FF file from google drive:
https://drive.google.com/file/d/0B8IpIa … sp=sharing

The toggle button in question is in the upper right corner (on small screen sizes) and it brings in a menu from the left.

Any help or insight is appreciated.

Thanks,
Jason
User 2484360 Photo


Registered User
3,293 posts

Hey Jason,

It appears to be an issue with Foundation itself. There is a workaround that you can use and it is explained here https://github.com/zurb/foundation-sites/issues/5343
User 2710679 Photo


Registered User
9 posts

Adam, thanks for the help and the article.

After some trial and error I have got it working. I'm learning Foundation and Javascript as I go on this project - and also figuring out how it translates when building it via FF.

For any other novices like myself, here is what I did to fix the data-toggle button for iOS / iPhone:

Copy the following script into the footer of each page using the Settings tab in FF:

<script>$('span.glyph.font-icon-1').on('click',function(){});</script>

Note that 'span.glyph.font-icon-1' is the name of my toggle button. You can replace this with your own by selecting your toggle button and viewing it in the Inspector tab in FF. When selected, look down in the CSS box at the bottom of the Inspector tab, highlight the first line of code in the CSS box - minus the left curly bracket { - and copy it. Then paste that line in the script code where the name of the toggle button should go.

<script>$('Name of Your Toggle Button Here').on('click',function(){});</script>

If anyone comes up with a better solution or knows a better method of implementing this through FF please comment and let us all know.

Thanks and I hope this helps anyone else having trouble with their data-toggle in iOS.


Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.