How To Sequentially Show Multiple Dialogs In Jquery Mobile?
How can I sequentially show multiple dialogs in jQuery Mobile (jQM)? Opening two dialogs directly in sequence $.mobile.changePage('#dialog1', 'pop'); $.mobile.changePage('#dialog2
Solution 1:
You could tie the change event to the first dialog (so when the user selects something) to maybe kick off the second dialog. Example: (Not working but maybe to get you thinking in the right direction) http://jsfiddle.net/LHG4L/18/
Post a Comment for "How To Sequentially Show Multiple Dialogs In Jquery Mobile?"