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 Chriss Miller 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.

TarsierSpectral

IS-IT--Management
Joined
Oct 21, 2003
Messages
270
Location
US
I am getting this error (Line 486 Char: 18 Error: Object Expected) on this page The links in the menu on top don't work. I can't figure out what the problem is as there is no line 486 in my code. Anyone know what this could be?

thanks
 
What browser are you seeing this error in?



<.

 
Your links call the following script:
Code:
location=systranURL('aboutohe.htm')

But you have no systranURL function defined in your page. You'll need to include whatever script library contains that function as a linked script in your header html like:
Code:
<script language="JavaScript1.2" src="somescriptlibrary.js"></script>

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.

Enable Apps
 
the error is seen in IE. All other browsers that I have tested do not display any errors but the manu doesn't work anyway.
 
You should take a look at all the errors your page generates for the Firefox browser to report.

Lee
 
Maggieddd said:
This page also has systranlinks and it works fine

Yes. That page has the [tt]systranURL[/tt] defined on it, and as such, when the links that call that function are executed the browser can run the script instead of spitting out an object expected error because it can't find the script you are asking it to run.

In case you missed it before:
dwarfthrower said:
you have no systranURL function defined in your page.

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.

Enable Apps
 
thanks a lot. That was it (systranlinks). it works now
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top