Site: http://www.friendsorenemies.com/

That site has jQuery UI tabs set up with Features, VIP Blogs, and All. But how are they importing the content? Originally, I was thinking I could use a jQuery rss parser like zRSSFeed, but realized that the blog author avatars don't show in rss feeds nor does meta data like this below:

Posted By authorname | 1 Comment | May 6, 2011 | 5:39pm

Then, I thought maybe they are using iFrames? But I looked at the source code and they are not.

You can see that:

  • the Features tab is getting the content from this page.
  • the VIP Blogs tab is getting the content from this page.
  • the All tab is getting the content from this page.

Anybody have an idea? This has been driving me crazy.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 0 down vote accepted

They're just using the Tabs widget's AJAX feature.

jQuery UI will automagically load content via AJAX when you give a "real" link in the a tag for a tab.

link|improve this answer
Do you mean adding the page link in the a tag (e.g. bit.ly/kqkLL7)? If so, wouldn't it import the whole page and not just the blog section? – J82 May 8 '11 at 7:17
If you look at the source, you'll see that the links they're using are not the same as the ones you posted. They have a different URLs that display just the bare content for each of those pages, and the tabs use those URLs. – John Flatness May 8 '11 at 7:19
Thank you for your help. If you don't mind, I would really appreciate it if you can point out exactly where in the source these links are. I must have looked it over about a hundred times. Would you mind? – J82 May 8 '11 at 7:21
Search for id="tabs". – John Flatness May 8 '11 at 7:24
Nevermind, I found them! Thank you so much! – J82 May 8 '11 at 7:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.