i posted this in another thread but figured this is a unique problem.
i'm using tubepress as normal - pulling down vimeo galleries and displaying them on my site. it all works perfectly when placed on a standalone page.
however, i am using the main page to dynamically pull in child pages and display their content using the jquery load() function.
i've set up a simple site to display how this works:
http://dev.pulsetrain.net
this script in the header pulls in the content and loads it into the div:
<script type="text/javascript"> $(document).ready(function() { $("#link1content").load('/test-page/'+ " #content"); }); </script>
this is the html/php on the page:
<div id="linkwrapper" style="text-align:center;"> <ul> <li class="red"><a id="link1" href="#">WORK</a></li> <div id="infocontent" style="text-align:center;"> <div id="link1content" class="contentbox"></div> </div> </ul> </div>
so, when the main index is loaded, jquery goes and fetches the #content div from the '/test-page/' URL and inserts it into the #link1content div. this part works fine. however, the thumbnail links don't work. i'm not quite sure what's causing this, as the tubepress hooks should be active on every page. i assume it's just not catching the rel classes?
you can see that tubepress is doing its job on the child page: http://dev.pulsetrain.net/test-page/
any ideas how to make it work when pulled into the main index's div?
thanks!