Loading page fragments in jquery UI tabs?
Hi! I know about the existence of $.load() and its ability to fetch a page and only load a particular selector from that document (throwing away the rest). I've looked in the jquery source code to see how that's implemented and I understand how it's done using $.ajax() and then finding the selector in the results.
How can we use this technique in an AJAX-loaded tab in jquery UI tabs? I know you can specify AJAX options when loading a tab. That allows me to use a technique similar to the one that load() uses internally, but I'm not sure how what to do then - how do I load just that found selector's content into that tab?