Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error on page

Status
Not open for further replies.

johnsimpson

Programmer
Mar 28, 2006
60
GB
Hi guys,

My client tells me she is getting an error on one of the sites i built but am not getting any error notifications on my browser.

It is saying error on line 24

In the source code it is showing this code which is not in my actual source code...

<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

Can someone have a quick look and see if you get any errors? And possible solutions?

Thanks
John
 
The problem is this function in "banner_change.js":

Code:
function showFooterImage(){
   var myObj = document.getElementById('shadow-bottom');
   myObj.style.backgroundImage = "url('"+theImages[whichImage].bottom+"')";
}

There is no element on the page with an id of "shadow-bottom", so the second line bombs out. There is an element with a class of "shadow-bottom", but that's not the same as an ID.

Hope this helps,
Dan

Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Hi,

I have amended it now to be a class instead of an id in the main code (not changed the js)

But im still getting the code i gave before? is the error still there?

Thanks for the help already, appreciate it.

J
 
I have amended it now to be a class instead of an id in the main code (not changed the js)

??

changing it to a class is not what you want to do. as BRPS pointed out, the getElementById function returns an element with the id supplied. you will need to give your banner an ID of "shadow-bottom". class has nothing to do with it.



*cLFlaVA
----------------------------
[tt]( <P> <B>)13 * (<P> <.</B>)[/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
oops yes sorry i meant i changed it to ID

Thanks for pointing it out (Dan knew what i meant ;-))
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top