Reputation: 137
I saw this question:
Show jQModal window on page load
and works fine when my content is not pulled from a remote source using ajax.
How can I use ajax in jqmodal on page load ?
Upvotes: 1
Views: 780
Reputation: 2625
Try this :
$('#ex1').jqm({ajax: 'path/to/text.html'}).jqmShow({ overlay: 70 });
Upvotes: 1