Guest User

Untitled

a guest
Aug 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. $.mobile.fixedToolbars.show() does nothing
  2. $('#no_thanks').tap(function() {
  3. $('#earn_more').slideUp(function() {
  4. $(this).trigger('updatelayout');
  5. });
  6. });
  7.  
  8. <div data-role="page" id="home" class="main_content">
  9. <div data-theme="b" data-role="header" role="banner">
  10. <h1 class="ui-title">My app</h1>
  11. </div>
  12. <div data-role="content">
  13. <p class="app_notice" id="earn_more">
  14. Tell us more about yourself
  15.  
  16. <a href="#" data-role="button" data-theme="d" data-icon="delete" data-iconpos="right" id="no_thanks">No thanks</a>
  17. </p>
  18.  
  19. </div>
  20. <div data-role="footer" data-theme="c" data-position="fixed" class="footer">
  21. <div data-role="navbar">
  22. <ul>
  23. <li><a href="#" class="ui-btn-active">Home</a></li>
  24. </ul>
  25. </div>
  26. </div>
  27. </div>
Add Comment
Please, Sign In to add comment