[jQuery] Re: Issue with loading content once using AJAX and display it as a SimpleModal (plugin)

2009-01-14 Thread Martin K
Thanks for your advice Beres. Eric's tip solved the problem. The problem was never the initial (Ajax) request but each following display of the modal dialog which will skip the step of populating the content. That said, you are right in that it would be better to display the modal in a callback fu

[jQuery] Re: Issue with loading content once using AJAX and display it as a SimpleModal (plugin)

2009-01-14 Thread Martin K
Thanks Eric, that did the trick. I'm a bit embarrassed since this was well documented on your site and I somehow missed it. Thanks for a great plugin! - Martin On Jan 13, 9:48 pm, Eric Martin wrote: > Martin, > > Try using the persist:true option: > $("#content").modal({persist:true}); > > Let