Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 155169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:06:29+00:00 2026-05-11T10:06:29+00:00

I have the following Javascript code, where feed is a valid url to an

  • 0

I have the following Javascript code, where feed is a valid url to an rss feed.

jQuery(function() {          jQuery.getFeed({             url:feed,             success: function(feed){                       alert(feed);                       }         });     });} 

when i run this the alert never shows up. using firebug i can see the connection being made and the response from the feed.

Note: i know this is a security issue and some browsers block it, this isnt the case at hand because i have worked around that issue and the browser no longer blocks the connection

EDIT : for some reason i cant make the comment show up so here:

The call isnt being proxyed by a script at the moment, since this is a test im just overriding browser security settings with:

netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserRead'); 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T10:06:29+00:00Added an answer on May 11, 2026 at 10:06 am

    With the information you give, we can see that your call is correct. The problem is probably somewhere else. In suggest that you dig in jFeed source code and disable feed parsing in $.ajax success method:

        $.ajax({         type: 'GET',         url: options.url,         data: options.data,         dataType: 'xml',         success: function(xml) {             var feed = xml; // <== was 'var feed = new JFeed(xml);'             if(jQuery.isFunction(options.success)) options.success(feed);         }     }); 

    If your alert pops up, it’s a feed parsing problem. In this case, you can check that the xml is correct and submit it here for further investigation.


    I’ve run some tests and checked jQuery code. You said that you worked around the browser security problem: I guess that you installed on you server a proxy script that will download the rss file from the distant server and then transmit it to your ajax request (because the browser will block ajax calls to a server different from the one your page is on). When making an ajax call with dataType : ‘xml’, jQuery expects that the content type of the response to contain the string ‘xml’:

    var ct = xhr.getResponseHeader('content-type'),   xml = type == 'xml' || !type && ct && ct.indexOf('xml') >= 0,   data = xml ? xhr.responseXML : xhr.responseText; 

    Here are my questions:

    • Did you use a script as proxy script as I suppose ?
    • Does this script set the content-type to something containing xml ?

    Here is a minimalistic php sample shipped with jFeed:

    <?php header('Content-type: application/xml'); $handle = fopen($_REQUEST['url'], 'r');  if ($handle) {     while (!feof($handle)) {         $buffer = fgets($handle, 4096);         echo $buffer;     }     fclose($handle); } ?> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 226k
  • Answers 226k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Old question, but you need to encode the session ID… May 13, 2026 at 1:12 am
  • Editorial Team
    Editorial Team added an answer I think this is what you're after: SELECT AVG(items.price) FROM… May 13, 2026 at 1:12 am
  • Editorial Team
    Editorial Team added an answer Are the 160 bit hash values generated by SHA-1 large… May 13, 2026 at 1:12 am

Related Questions

I have the following javascript function to create an image that will show on
I have the following javascript: $.ajax({ type: "POST", dataType: "json", url: "/Home/Submit", data: {
This is what I have On my .master page i have the following <script
Hey all. I have, what appears to be, a trivial problem. I have the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.