Reputation: 21
How can I display more than one page at the same time with jQuery mobile? I have a big page in "background", but when I click a button I want to show a settings menu (another jQuery page), maintaining the same background. It is possible to do?
EDIT: avoiding the use of iframe
html element
Upvotes: 1
Views: 598
Reputation: 1302
JQuery mobile is designed to display one page at a time. You can however display a popup (see documentation) that will be displayed on top of the current page, and can accommodate a menu
Upvotes: 2