I have a method that uses setTimeOut
property and makes a call to another method. On initial load method 2 works fine. However, after timeout, I get an error that says method2
is undefined. What am I doing wrong here?
ex:
test.prototype.method = function()
{
//method2 returns image based on the id passed
this.method2('useSomeElement').src = "http://www.some.url";
timeDelay = window.setTimeout(this.method, 5000);
};
test.prototype.method2 = function(name) {
for (var i = 0; i < document.images.length; i++) {
if (document.images[i].id.indexOf(name) > 1) {
return document.images[i];
}
}
};