views:

32

answers:

1

I saw this question:

http://stackoverflow.com/questions/2884185/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 ?

A: 

Try this :

$('#ex1').jqm({ajax: 'path/to/text.html'}).jqmShow({ overlay: 70 });
Michel Kogan