[jQuery] Re: JQuery Won't Parse RSS?

2009-11-24 Thread siliconeagle
I am having this exact same problem, the title and descriptions come through fine. seem to be something to do with there being two link attributes. (link and atom:link) var base = $(data).children("channel"); feed.title=base.children("title").text( ); feed.description=base.children("description").

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-29 Thread Richard.Williams.20
You can also use this generic rss parsing script. # Script rss.txt var str source, list var str rss ; cat $source > $rss set $wsep="," ; var int count ; set $count = { wen $list } while ( { sen -c -r "^&^" $rss } > 0 ) do var str item ; stex -c -r "^&^" $rss > $item var int index ; set $

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-07 Thread Charlie
Google has a great API for feeds that doesn't require the proxy php you are using. There are also several jQuery plugins wrapping the google feed API http://code.google.com/apis/ajaxfeeds/ NRutman wrote: MorningZ, done that. My approach is exactly what some other folks are using. I'm ju

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-06 Thread Dave Methvin
What does your xml look like? I am guessing it may not be well formed. If $.get returns a string and you pass it to $() it will attempt to parse it as html and an html link tag isn't supposed to have children. If you force xml then it might return nothing if the xml is not well formed.

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-06 Thread NRutman
MorningZ, done that. My approach is exactly what some other folks are using. I'm just wondering if anybody has come up across the problems I'm having with some fields being empty that really aren't empty in the XML. Or, that when they specify the XML dataType, JQuery returns an empty data objec

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-06 Thread MorningZ
Maybe take a look at what people have done in the past? http://www.google.com/search?q=jquery+rss+reader It definitely appears do-able