I haven't used it yet, but if I've read things correctly, you can use a
selector in a native jquery .load() call, which would get the div from
the file on the server. See here:
http://docs.jquery.com/Ajax/load#urldatacallback
example snippet:
$("#links").load("/Main_Page #p-Getting-Started li");
You could probably (guessing) then pump the fetched node into the jqm.
Not sure all this will help, but it's something I remembered from recent
reading.
- Jack
will wrote:
Greetings jQuery Land,
I'd like load a specific part of another page into a jqModal box.
like:
$('#mybox').jqm({ajax: 'included.php#this_particular_div_only'});
Any hope for me and mine?
Thank you,
Will