Questions tagged [jfeed]

19 questions
3
votes
3 answers

Using jQuery to parse an RSS feed, having trouble in firefox and chrome

I used a jQuery library called jFeed to parse and display my blogs rss feed on my personal website. It worked perfectly well at first, but upon checking later it simply displays nothing, except in Internet Explorer, where it seems to work fine.…
sjmarshy
  • 522
  • 4
  • 7
2
votes
4 answers

jFeed - sucess function not being executed (jQuery plugin)

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); } …
Nuno Furtado
  • 4,548
  • 8
  • 37
  • 57
2
votes
2 answers

Chrome extension parsing RSS

I'm working on an extension for Chrome that uses an RSS parser, however I have used several different methods and I keep getting the error: "XMLHttpRequest cannot load Example.rss. Origin chrome extension://djhppbppokfmldecpcfbcmchagimpmpc is not…
2
votes
1 answer

jFeed Same Origin Policy

I am trying to find a workaround for my use of jQuery jFeed & the Same Origin Policy. I'm trying to use jFeed to parse my wordpress xml feed that is hosted on the same domain. This is how my code is set up: jQuery.getFeed({ url:…
Jake
  • 37
  • 5
1
vote
1 answer

how to load new rss feed items in jQuery

I'm using jFeed to parse an RSS feed, but I'm thinking now how I can track changes on interval based checking. How would one efficiently check if there are new items in a feed compared to the previous load? Unfortunately I can't use the RSS 2.0 last…
FLX
  • 4,634
  • 14
  • 47
  • 60
1
vote
0 answers

jFeed problem: modifying global variable from success function

I am using jFeed to parse an RSS feed and I would like to modify an outside variable (or array) from the function executed upon "success". This is a simple version of the code: var testVariable = "Original"; jQuery.getFeed({ url: rssFeed, …
Ralph
  • 397
  • 1
  • 4
  • 16
1
vote
2 answers

Has some other jQuery plugin replaces jFeed for parsing RSS now that jFeed is no longer maintained?

I was trying to find a jQuery plugin to parse an RSS feed and found that jFeed was the most recommended option for quite some time but judging by the broken links on its plugin page and the fact that it hasn't been updated since 2008, I'm guessing…
1
vote
1 answer

Does JFeed support RSS images?

I've had a look at JFeed's readme and it doesn't mention anyway to get to an RSS item's image: JFeedItem properties * item.title * item.link * item.description * item.updated * item.id Does anyone know a way to parse these images?
David Neale
  • 16,498
  • 6
  • 59
  • 85
0
votes
1 answer

Trying to get content:encoded with jfeed

I can get a successful response with the RSS I am trying to pull using jfeed, however, the thing I really want is the content. [content:encoded] I need this so I can grab the first image from each post. I figured it would be easy to update jfeed to…
theTHP
  • 55
  • 2
  • 8
0
votes
1 answer

Jquery jFeed 403 error

So I have jFeed working on another site and i'm testing it right now with the most basic instance of the plugin but it's still acting strange and giving me a 403 forbidden error. My response from firebug...

Forbidden

You don't have…

Greg Thompson
  • 886
  • 4
  • 12
  • 31
0
votes
1 answer

Reverse order of RSS feed in zRSSfeed (jQuery)?

Im using zRSSfeed and everything is great but I need to be able to reverse the order of the feed, does anybody know how to do it? The zRSSfeed uses jQuery to pull the feed so anything applicable to that should apply as well. Any ideas? I dont want…
0
votes
1 answer

Jquery syncrounous issues

Ok so I have a basic function that get's 2 feeds. My issue is that the function, running asynchronously skips down to the alert function(in for testing) before it's doing the function to get both feeds. I'm sure there's a viable solution but it has…
Greg Thompson
  • 886
  • 4
  • 12
  • 31
0
votes
1 answer

Parsing an RSS feed with jfeed fails only for some fields

I'm using the latest version of jFeed with the latest jQuery. I know jFeed is rather outdated, and no longer supported, but firefox seems to be the only browser that is having an issue parsing an RSS feed using this setup. I've modified jFeed to…
franklin stine
  • 1,100
  • 1
  • 8
  • 11
0
votes
1 answer

jQuery jFeed plugin working with the domain with www and without it

I use jQuery jFeed plugin to fetch rss feed from WordPress blog and show on the main page of the site. So, it works fine when I go to http://site-using-jfeed.com. But when go to http://www.site-using-jfeed.com, it doesn't load the feed and nothing…
Sergei Basharov
  • 51,276
  • 73
  • 200
  • 335
0
votes
1 answer

Parsing GeoRSS Feed with jQuery

I'm attempting to use the jQuery jFeed plugin for parsing an Atom, GeoRSS feed and I'm running into issues extracting the information I need. For example, I need to extract the summary element and I would like to render the contents in a div on my…
senfo
  • 28,488
  • 15
  • 76
  • 106
1
2