user1875044
user1875044

Reputation: 21

Display more than one page at once jquery mobile

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

Answers (1)

Romain
Romain

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

Related Questions