Tag : jquery , By : user176445
Date : March 29 2020, 07:55 AM
Does that help You can use iScroll javascript plugin which will make your header and footer with the fixed position and your inner div tag will be scrollable. You can find iScroll lib here- http://cubiq.org/iscrollYou can also think about JQTouch lib (http://jqtouch.com/) which all ready has some nice css.
|
Date : March 29 2020, 07:55 AM
seems to work fine You should consider to change to Jquery mobile 1.1.0 and their real fixed toolbars. Read the announcement. Its supported by most of the devices in use and the most clean solution:
|
Date : March 29 2020, 07:55 AM
wish of those help In jquery-mobile to create a fixed footer just do: <div data-role="footer" data-position="fixed">
your footer data
</div>
|
jquery mobile $.mobile.changePage() Windows phone 8 not working Cordova/PhoneGap
Date : March 29 2020, 07:55 AM
may help you . code Index.html var url = window.location.href;
url = url.split('#').pop().split('?').pop();
url = url.replace(url.substring(url.lastIndexOf('/') + 1),"second.html");
$.mobile.changePage(url, { reloadPage : false, changeHash : false });
|
Date : March 29 2020, 07:55 AM
hop of those help? Rather then using position:fixed. you could use a wrapper to push the footer down, HTML: <div id="wrapper">
<div id="content">
your list / content
</div>
</div>
<footer></footer>
#wrapper {
height:100%;
padding-bottom:100px; /* Footer height */
}
footer {
height:100px;
margin-top:-100px,/* Footer height */
}
|