I am currently facing a error in javascript, the code is given below
function loader() {
size = window.innerWidth;
size = size - 300;
mainj = document.getElementById('main1');
mainj.style.left = size.toString() + 'px';
submainj = document.getElementById('submain1');
submainj.style.left = size.toString() + 'px';
size = mainj.style.top + 26;
document.getElementById('submain1').style.top = size.toString() + 'px';
}
onload = loader();
The error comes only in the IE and the code works perfectly in Firefox, The error shows is in the fifth line, Error being
Message: Object required
Line: 34
Char: 1
Code: 0
URI: http://localhost/home.php
Line 34 is the 5th line given in the code - 'mainj.style.left.....' Any help??
mainjandmainj.styleare undefined? – James Montagne Jun 21 '11 at 19:27mainjseems to be undefined but it shouldn't be so, because a element with id 'main1' exists and this code works perfectly fine without errors in firefox. – Anand S Kumar Jun 21 '11 at 19:32