Iterating Remote Feeds
The process for looping through remote RSS feeds is a little different than with regular Mura collections and iterators.
<cffeed query="rs" source="http://myremotefeed.com/feed/" />
<cfset iterator = $.getBean('beanIterator').setQuery(rs) />
<cfif interator.hasNext()>
<cfloop condition="iterator.hasNext()">
...
</cfloop>
...
</cfif>Last updated