I've got the following code in a website:

 window.onload = resize;
 window.onresize = resize;

 function resize(){
  heightWithoutHeader = (window.innerHeight - 85) + "px"; 
  document.getElementById("haupttabelle").style.height = heightWithoutHeader;
  document.getElementById("navBar").style.height = heightWithoutHeader;
 }

The onresize works fine, but the onload event never fires. I've tried it in Firefox and Chrome and neither of them works.

Thank you for your help and go for the reputation! ;D

link|improve this question

3  
When are you running this code? Is it possible that the onload is being being overridden later, or is being attached after the load event fires? – Nick Craver May 11 '10 at 12:58
You were right. window.onload was obviously overwritten by <body onload=...> later. Post your comment as an answer please, so I can tick it as the right one. – New Talk May 11 '10 at 13:07
Done :) Glad you resolved it! – Nick Craver May 11 '10 at 14:31
feedback

4 Answers

up vote 1 down vote accepted

I think what's probably happening here is that your window.onload is being overridden later, check to make sure that it's not via things like <body onload="">

You can check this by alert(window.onload) in your re-size function, to see what's actually attached there.

link|improve this answer
feedback

If it's really in that order, it's definitely not going to work. You can't assign a function to an event handler before the function itself is declared.

link|improve this answer
I've changed the order now but it still doesn't work. – New Talk May 11 '10 at 13:03
As Nick Craver said, it would be helpful to know the larger context of this and when it's actually being called. – Syntactic May 11 '10 at 13:07
wrong answer: in the same javascript scope it is allowed, but not recommended, to declare a variable or function after its use. try : "var a = fun(42); function fun(n) { return n; }; console.log(a);" – Francois Dec 17 '11 at 12:20
feedback

This will be work when you call the "window.onload" next to the function resize()

link|improve this answer
feedback

This works for me, i think your problem is somewhere else:

 function resize(){
  var tester = document.getElementById("tester"),
      html = tester.innerHTML

  tester.innerHTML = html + "resize <br />"
 }  

window.onload = resize;
window.onresize = resize;

you can test it yourself here: http://jsfiddle.net/Dzpeg/2/

are you sure its the only event called onLoad ? Maybe an other onLoad event creates a conflict

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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