vote up 1 vote down star

I want to execute a particular number of statements after some delay. For eg:

function findPosX(obj) {
    var curleft = 0;
    if (obj.offsetParent) {
        while (1) {
            curleft += obj.offsetLeft;
            if (!obj.offsetParent) {
                break;
            }
            obj = obj.offsetParent;
        }
    } else if (obj.x) {
        curleft += obj.x;
    }
    return curleft;
}

function findPosY(obj) {
    var curtop = 0;
    if (obj.offsetParent) {
        while (1) {
            curtop += obj.offsetTop;
            if (!obj.offsetParent) {
                break;
            }
            obj = obj.offsetParent;
        }
    } else if (obj.y) {
        curtop += obj.y;
    }
    return curtop;
}
function gotoDiv(index) {
    var ele = document.getElementById("Div" + index);
    var x = findPosX(ele);
    var y = findPosY(ele);
    setTimeout("window.scrollTo(x, y)", 5000);
}

Here I want to set the current scroll position to a prticular div. But it's giving me error: x is undefined. Let me tell u if I use the functions as below it works fine, so please don't tell me that ele is null and blah blah blah.

function gotoDiv(index) {
    var ele = document.getElementById("Div" + index);
    var x = findPosX(ele);
    var y = findPosY(ele);
    window.scrollTo(x, y);
}

Any help appreciated.

flag

69% accept rate
ele being null probably won't cause the x being undefined, I think natrium has that solution, but you should check ele for null though ;) i'm sure you've just simplified the code here and you're actually doing it in your code already ;) – dharga Sep 25 at 12:57

3 Answers

vote up 4 vote down check

try

setTimeout("window.scrollTo(" + x + ", " + y + ")", 5000);

this is not best practice. Use this in stead:

setTimeout(function() { window.scrollTo(x, y); }, 5000);
link|flag
5  
Do not pass JS code as string to setTimeout function. Please pass a regular javascript function. – SolutionYogi Sep 25 at 12:54
Worked like a charm...Thanks buddy !! – Manish Sep 25 at 12:59
Way to rip bdukes' answer after the fact. – Crescent Fresh Sep 25 at 13:06
1  
at least I admit my original answer was not the best one. bdukes is geting more votes so no worries. – Natrium Sep 25 at 13:10
vote up 1 vote down

Wrap the function in a closure and then put the timeout inside the closure.

link|flag
already tried that but what if the function requires a paramter?? It's giving the current error bcoz of the same reason..!! – Manish Sep 25 at 12:57
vote up 13 vote down

You can give setTimeout a function, rather than a string, which will let you access those variables:

setTimeout(function() { window.scrollTo(x, y); }, 5000);
link|flag
Great...this is working too...!!! Thanks ... – Manish Sep 25 at 13:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.