The following loop generates a variable for each div element with class .scrollable
var scrolls[];
$('.scrollable').each(function(){
this.id = 'scrollp' + (++orderit);
scrolls[ 'myScroll' + this.id ] = this.id;
});
The problem is that I need to call them again later, and we do not know which ID was assigned where. I tried this.
setTimeout(function () {
$('.scrollable').each(function(){
scrolls[ 'myScroll' + $(this).attr('id')]_update();
});
}, 2500);
But the variable is unknown. FIREBUG:: missing before statement. I take it that it cannot work out the variable name like that, but have no idea how to fix it.