This is a perfect candidate for closures:
setInterval(
function ()
{
// Do Stuff
var myVar = document.getElementById("givenID");
setTimeout(
function()
{
// Do Stuff
myVar is available because the inner closure
// gets the outer closures scope
myVar.innerHTML = "Junk";
},2000);
}, 10000);
I'm guessing that your
Your problem is scope related, and this would work around that.
