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 do this, but nothing I try seems to get it. The most obvious attempt was to add:
item.content = jQuery(this).find('content\:encoded').eq(0).text();
but this returns an empty string. I'd really appreciate a push in the right direction, thanks all!