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 pull a 'date' field which is in the XML node "dc:date". The only thing I can think of is firefox is having an issue because of the semicolon. (All other fields are working fine and do not have this character in them).
I've updated the jFeed prototype to include the date field and the modified portion in jFeed that is parsing fine in everything other than firefox looks like this now:
c.date = jQuery(this).find("date").eq(0).text();
No errors are being thrown, and simply a null value is being returned.