jQuery Facebook Feeds XML Reading Problem...

jQuery Facebook Feeds XML Reading Problem...

Hello,
My English is bad. I'm sorry if I write wrong.

Facebook notifications, I want to take with jquery.

Facebook RSS Link:

I can do it with php.
  1. $dosya = xmlyukle('http://www.facebook.com/feeds/notifications.php?id=135499233146253&viewer=100003775509758&key=AWi04GZM2EZSzqTY&format=rss20');
  2. $dosya = new SimpleXMLElement($dosya);
  3. foreach($dosya->channel->item as $yaz){
  4.     echo '<li><a target="_blank" href="'.$yaz->link.'" title="'.$yaz->pubDate.'">'.$yaz->title.'</a></li>';
  5. }


jquery, how can I do?
I'd appreciate if you help.