golive jscript error

Pindrys

Registered
alright guys, i know this isnt very cool to post here, but hear me out
check this out:
www.fuel5.com/pindrys
click the face
now, if youre using safari, you can check your activity and see there was a problem calling up some "csscriptlib" or something. anyone know whats going on here? thanks in advance
 
Pindrys,

Actually, we welcome your post. I did move it to "The Net: Coding" forum. Hopefully someone here can help you.

Peace.
Doug
 
I had a look at your code and it looks like you've made the link to your JavaScript file absolute instead of relative:

<script type="text/javascript" src="file:///Dave's%20Crib/Users/*******/Library/Preferences/Adobe/GoLive/Settings/JScripts/GlobalScripts/CSScriptLib.js"></script>

The GoLive code looks a bit messy for a simple popup too, try using this in the head:

<SCRIPT LANGUAGE="JavaScript">
function Start(page) {
OpenWin = this.open(page, "main", "status=yes,toolbar=no,menubar=yes,location=no,scrollbars=no,resizable=no,width=585,height=550");
}
</SCRIPT>


and this for the link:

javascript:Start('main.html')

Hope that helps!
 
The link does nothing. What should happen?

monktus: What is the point of censoring his user name? Anyone can just check out the source code of the page to see what it is.
 
Back
Top