Internet Explorer Script Error

Y

Yvonne

I am trying to put a new website up: www.photo-save.com
When I am working on the site, I get a Script Error when I want to see 2 of
my pages in "Preview". My Services Page and My Price List Page

Services Page"
An error has occurred in the script on this page
Line: 452
Char: 3
Error: 'SymRealWinOpen' is undefined
Code: 0
URL: file:///C:/documents%20and%20Settings/Yvonne/Local%
20Settings/Temporary%20Internet%
20File/FrontPage TempDir/pvw98.htm

Do you want to continue running scripts on this page? yes/no

My Price List Page has the same info, except it says:
Line 276

And I always say No.
How do I get rid of that message
 
D

David Berry

The problem is in this JavaScript:

<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;

function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}

function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}

SymRealOnLoad = window.onload;
window.onload = SymOnLoad;

//-->
</script>


What are you using the script for? You don't seem to be using it anywhere
on your page. The error is because there's no function called
SymRealWinOpen. Did you accidentally delete part of the script? If you
aren't using it delete all the code above.
 
Y

Yvonne

David:
THANK YOU, THANK YOU!!! DID IT. Now I am working on the other thing, what
you told me to do. "INSERT VIDEO"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top