Skip to content Skip to sidebar Skip to footer

Jquery Mobile Popup Is Not Closing

sorry for not supplying a fiddle, I can't get it set up there. However, I use the following code to programatically open and close a popup. Only that it doesn't close and stays ope

Solution 1:

you can try

$('#initialpopup').popup('open', {transition: 'pop'});
window.setTimeout('$("#initialpopup").popup("close");', 500);

Post a Comment for "Jquery Mobile Popup Is Not Closing"