According to the documentation for jQuery Mobile 1.2, it should be possible to pop up arbitrary divs without their pages:
<div data-role="popup" id="popupHelp">I should be hidden</div>
Until <a href="#popupHelp" data-rel="popup" data-position-to="window">this</a> is clicked!
This seems to work fine in Chrome on PC: the div is hidden until a button is clicked thisand a popup appears.
On the iPhone, however, before clicking the link, a div (with the close button X) will be displayed below the page footer.
Is this a bug or some legacy code not supported in JQM 1.3.1?
PS: I know that this question was asked, but there was no answer.
source
share