简体   繁体   中英

Popup dialog in jquery mobile

I used jQuery mobile and added popup on leftmost button but the popup window is not centered as to screen it gets left padding more.

Popup dialog is not centered in portrait mode in android mode I have used the code from this link to generate popup dialog button from this

It's unclear as to what problem you're having, but to center the dialog on the window, just use data-position-to="window" like this:

<a href="#positionWindow" data-rel="popup" data-position-to="window">

<div data-role="popup" id="positionWindow">
    <p>I am positioned to the window.</p>
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM