jquery mobile page stuck loading -
i trying put app runs jquery mobile front end , node js backend.
the problem experiencing page not loading 1 of routes.
i have proper links:
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
here code:
<% include partials/header %> <div data-role="header" class="ui-header ui-bar-a" role="banner"> <h1 class="ui-title" role="heading" aria-level="1">settings</h1> </div> <ul data-role="listview" class="ui-listview"> <a href="/signin" class="ui-link-inherit"><li data-corners="false" data-shadow="false" data-wrapperels="div" data-theme="a" class="ui-btn ui-li ui-li-last ui-btn-up-c"><div class="ui-btn-inner ui-li"><div class="ui-btn-text"><h3 class="ui-li-heading">sign out</h3></a> </ul> <% include partials/footer %>
everything works smoothly in browser on mobile device, gets stuck on load , wont go index page (/signin route).
...and have general question: jquery mobile typically render differently on each device (mobile , laptop)?
thanks!
Comments
Post a Comment