Hi, I'm using the jQuery UI Tabs plug-in to load html pages via ajax, so I have the following html:
<div id="tabs">
<ul>
<li><a href="pageWithGallery.html" title="pageWithGallery">Gallery</a></li>
</ul>
</div>
The loaded page pageWithGallery.html contains a jQuery gallery which plays on $(document).ready. this however doesn't work when the ui-tabs plug-in loads the page via ajax . How then should I do this? Thanks!