![]() |
javascript help!
i never noticed this error but on some people's puters it's popping up with an XP popup with these errors:
Errors: Line: 54 Char: 5 Error: 'document.images[...]' is null or not an object Code:0 Line: 49 Char: 5 Error: 'document.images[...]' is null or not an object Code:0 Line: 61 Char: 1 Error: Object expected Code:0 here's the code Quote:
anybody know anyone who can help figure this out? or at least point me in the javascript messageboard help direction? |
It's been a while since I touched Javascript, but if my memory does not fail me, some browsers don't support the document.images[] type of command.
I wish I could help more. Try these sites: Netscape's devedge JavascriptKit (rather commercial) Maybe somebody else can be more specific. Cheers. |
It's hard to say without seeing the IMG tags in your HTML code, but the error means that an IMG tag with the specified name attribute doesn't exist in that document.
|
thanks for the responses, i'm still working on it. (kinda)
|
Another thing that may be happening is that the JavaScript that refers to those IMG elements is getting called before the browser parses the IMG tag, in which case the elements may not exist in the Document Object Model yet even though they do exist in the HTML file.
For small images such as buttons, I usually dispense with all the preloader crap in the document's HEAD and just set an IMG tag's source to an absolute URL in the mouseover and mouseout code, like so: HTML Code:
By the way, the "if (document.images)" tests in your code are unnecessary, since every DOM and older DHTML model (e.g., IE4 & NS4) has a document.images collection - there's no need to test for it. |
You could also just put that script code at the bottom of the page (after </body>). Or to keep it neat, you could make that code a function at the top, and call the function at the bottom page or in <body onLoad="">
|
Can you post an example onmouseover = "..." call for us ?
Quote:
|
All times are GMT -8. The time now is 11:36 AM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project