I have a callback function that isn't executing. I suspect it's being treated as a string, but I'm not sure. The code is below. Also, here's a simplified jsFiddle with more details: http://jsfiddle.net/oakley808/sH5XE/3/
Basically it just iterates a for loop, using settings from an object. The final line config.feeds[i].cb is what fails. Ideas anyone?
// the callback function
function rssdone(){
$('#cbBlock').append('did some callback stuff<br>');
}
// the settings for the loop below
var config = {
"feeds": [
{
"container": "#block1",
"url":"http://apps1.eere.energy.gov/news/rss/program.cfm?topic=1010",
"limit":"4",
"layoutTemplate": "<ol type='1'>{entries}</ol>",
"entryTemplate": "<li>{title}</li>",
"cb":"rssdone"
},
{
"container": "#block2",
"url":"http://apps1.eere.energy.gov/news/rss/financial_opps_solar.cfm",
"limit":"2",
"layoutTemplate": "<ol type='A'>{entries}</ol>",
"entryTemplate": "<li>{title}</li>",
"cb":"rssdone"
}
]
}
// the logic
for( var i=0; i < config.feeds.length; i+=1 ) {
$( config.feeds[i].container ).rss(
config.feeds[i].url,
{
limit: config.feeds[i].limit,
layoutTemplate: config.feeds[i].layoutTemplate,
entryTemplate: config.feeds[i].entryTemplate
},
// this fails to use the callback for some reason
config.feeds[i].cb
// use this instead and it works!
// rssdone
);
}