I want to set up some tabbed content on my site using jQuery and I want the tabs to pull the rss feeds from another part of the site. It’s still the same site, though. Is this possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the XML documents are on the same domain as your document it can be done with
jQuery.ajax()calls, or you can use jQuery plugins to fetch and parse data with jQuery RSS plugins.If they are on a different domain you can use Yahoo Pipes to transform the remote XMLs to JSONP response which will work with all browsers, or you can use Cross-Origin Resource Sharing (cross domain AJAX) with the new ones.