Erik, that's SWEET!

Assuming you do have a cross-domain problem, I have a simple proxy written
in perl. (http.cgi)

#!/usr/bin/perl
use LWP::UserAgent;
use CGI;
$ua = LWP::UserAgent->new;
$ua->agent("NuBrowser/10.7 ");
$res = $ua->request(HTTP::Request->new(GET =>  $ENV{QUERY_STRING}));
$q = CGI->new;
print $q->header(-type=>$res->headers->{'content-type'}),$res->content;


change

url: 'rss.xml',

to

url: 'http.cgi/rss.xml',


On 5/17/07, Erik Beeson <[EMAIL PROTECTED]> wrote:


Assuming you don't have cross-domain ajax problems, you could just
load the feed as XML data and parse it and display it however you
want:

http://erikandcolleen.com/erik/projects/jquery/rss/

--Erik

On 5/17/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
> Working on my company site:
> http://beta-www.marketo.com
>
> I am trying to include the last 3 headers from the blog.
> Is there a jQuery plugin to pull from an RSS feed and turn them into
> headers?
>
> How is this done?  I am an RSS newbie, I am embarrassed to say.
>
> Thanks for any help.
>
> Glen
>




--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ

Reply via email to