Jquery Mobile Force Ui-btn-active On Navbar Button
I am having a problem with jQuery mobile navigation (navbar). I have 4 pages and I've set the class='ui-btn-active' to a different one on each page.. For example: Page 1:
Solution 1:
Try adding the "ui-state-persist" class to your anchor. ex: class="ui-btn-active ui-state-persist"
Solution 2:
set the link to href=#
on the active button seemed to fix this for me.
The problem seemed to exist when clicking on the active link although you are already on that page, then navigating away from that page and back to it.
Solution 3:
You have to add the "ui-state-persist" to all the anchor tags, otherwise it still breaks if you refresh a page, then go to another page, then come back to the page you refreshed.
Solution 4:
This only worked for me (in v1.3) if I set class="ui-btn-active ui-state-persist" on the anchor tags of the ones I wanted to be highlighted (ie, one per page), with the rest of the anchor tags in that navbar with no classes set.
Post a Comment for "Jquery Mobile Force Ui-btn-active On Navbar Button"