jquery-mobile-dialog

How to load Dialog or Popup before page load using jquery mobile

天涯浪子 提交于 2019-12-04 06:55:20
问题 Is there any method to call/show Dialog or popup before page load using jquery Mobile? I want to get some input before page load and according to that input next page will be loaded 回答1: To load a dialog or a popup before showing a page, you need to use seTimeout . if you call it without a delay, it will open and close at once. $(document).on('pagebeforeshow', '#pageID', function() { setTimeout(function () { $('#popupID').popup('open'); }, 100); // delay above zero }); Similar issue. 回答2: