The following bit of javascript has an error in the second line shown here. What I'm trying to find is the width of the window:
Thanks in advance for all assistance,
Happy2B
Code:
if(browserName == 'Internet Explorer') {
if(document.body.offsetWidth == screen.width) {
thisOffset = 65;
} else {
thisOffset = 0;
}
.... more code
} else {
.... more code
}
Thanks in advance for all assistance,
Happy2B