Click to See Complete Forum and Search --> : javascript not functioning properly
csli820
08-27-2003, 11:29 PM
Hi, I created this page that uses rollovers. It's a big stripe with "brokers," "listings", "company" etc. The problem is that the rollovers are not loading right. It's choppy and not smooth. I think there is something wrong with the javascript.
Here's the link to the page:
www.sharpinsightsconsulting.com/altindex/index.html
Please advise. Thanks
gcrowan
08-28-2003, 12:15 AM
It looks like you are using a version of Front Page to create this site. I say this because your mouseover function is common to Front Page. There seems to be a difficulty in using these programs. I have seen this problem many times and here is what's happening. The onload command in the body tag (onload="MM_preloadImages...") which lists the pathway and filenames of each preloaded image, in your case point to the images that exist on your hard drive.
Example: file:///C|/WINDOWS/Desktop/index/featureda.gif','file:///C|/WINDOWS/Desktop/index/featuredb.gif','file:///C|/WINDOWS/Desktop/index/featuredc.gif'...
Instead each image should have the correct url to the file on your website.
Example:
'images/featurea.gif','images/featureb.gif'... and so on.
csli820
08-28-2003, 12:50 AM
Hi, thanks for the tip. I didn't think of this. Thank you for pointing me to the problem.