Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can somebody please tell me why the setTimeout used in the code below isn't working? It just runs the function straightaway.

function change_txt_font(elem, id, text_fnt){
    current_width = parseInt($('#span_text'+id).css('width')); 
    current_height = parseInt($('#span_text'+id).css('height')); 
    current_font_size = parseInt($("#span_text"+id).css("font-size"));

    parent.document.getElementById(elem+'_f').value=text_fnt;

    $('#span_text'+id).css('font-family',text_fnt);
    $('#'+elem).css('font-family',text_fnt); 
    setTimeout(adjust_for_font(id),2000);
    }

function adjust_for_font(id){
        alert("function")
        alert("id = "+id)
    new_height = parseInt($('#span_text'+id).css('height'));
    new_width = parseInt($('#span_text'+id).css('width'));
    width_ratio = parseFloat(current_width/new_width)
    height_ratio = parseFloat(current_height/new_height)
    new_font_size = current_font_size * Math.min(width_ratio,height_ratio)
    $("#text"+id).css("font-size", (parseFloat(new_font_size) - 1) + "px");
    $("#span_text"+id).css("font-size", (parseFloat(new_font_size) - 1) + "px");
    document.getElementById("form_front_text"+id).submit();
}document.getElementById("form_front_text"+id).submit();
}

Any help appreciated.

share|improve this question
3  
setTimeout(function() { adjust_for_font(id); }, 2000) – Sim Feb 7 '12 at 22:07
Thanks Sim your a star! I'm still getting used to javascript - and it shows at times! Thanks again. – Mark_54 Feb 7 '12 at 22:09

5 Answers

The problem is this line

setTimeout(adjust_for_font(id),2000);

This doesn't schedule the invoking of adjust_for_font(id) but instead invokes the function directly and schedules the return value. To schedule the invocation of the function wrap the call in a lambda

setTimeout(function() { adjust_for_font(id); },2000);
share|improve this answer
Thanks for this. – Mark_54 Feb 8 '12 at 17:36

Change

setTimeout(adjust_for_font(id),2000);

to

setTimeout("adjust_for_font(id)",2000);
share|improve this answer
Not a bad suggestion but still wont work on certain versions of safari. You're best off just setting it into the function as: setTimeout(function(){ adjust_for_font(id); }, 2000); – SpYk3HH Feb 7 '12 at 22:44

The way you have it written, it's as if the output of adjust_for_font(id) is the input to the first parameter of setTimeout. The first parameter should be the function, not the result of the function. Try this instead...

setTimeout(function() {
    adjust_for_font(id);
},2000);
share|improve this answer

By not putting quotes around your function, the function will process immediately, setTimeout will run (but won't process a function) and you're left wondering what on earth happened.

setTimeout is designed to run like this:

setTimeout('adjust_for_font',2000);

Or a callback is another option:

setTimeout(function(){adjust_for_font(id);}, 2000);
share|improve this answer
'...left wondering what on earth happened' - yep that about sums up my javascript programming at the moment!! – Mark_54 Feb 8 '12 at 17:35

This should do the trick:

setTimeout(adjust_for_font, 2000, id);

I am passing the function name, to be executed when 2000 milliseconds have passed. In your code, you are passing the result of adjust_for_font. The brackets after the function name cause it to be executed as soon as it is parsed (immediately).

share|improve this answer
Not all browsers support the syntax of setTimeout() with an argument for the function specified after the delay. Using an anonymous function as in the other answers should work in all browsers. – nnnnnn Feb 7 '12 at 23:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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