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");