Link to home
Start Free TrialLog in
Avatar of GaryZ
GaryZ

asked on

JS Error - "Unexpected Identifier"

I have the following code:

<script src="<servername>/sametime/stlinks/stlinks.js"></script>
<script>setSTLinksURL("<servername>","en-us");</script>
<script>writeSTLinksApplet("<username>","", "1"); </script>
<script>writePlaceCounter("SameTimeTest","SameTime");</script>

<script>
function STLinksLoggedIn("<username>","<name>")
{
STLinksEnterPlace("SameTimeTest");
}
</script>

Whenever I run the code, I get the JS Error "Unexpected Identifier" and the line number it points to is the last <script>

I have tried everything I can think of, any ideas?
Avatar of avner
avner

You have different JS errors :

Fix the function to :
<script>
function STLinksLoggedIn(username,name)
{
STLinksEnterPlace("SameTimeTest");
}
</script>

All other occurnces of "<servername>" should be your server name and not this string.
for example :
<script src="<servername>/sametime/stlinks/stlinks.js"></script>
to :
<script src="http://www.ayhoo.com/sametime/stlinks/stlinks.js"></script>
give us a link, or try running it with nescape and type
javascript:
in the address bar;
Avatar of GaryZ

ASKER

I know that, I changed the actual server name to <servername>.

I cannot give you a link, it is a secured application.
And you also change the method ?

If it still does not work, you'll have to post the whole code, if the problem is not in the posted code, there is no way we can trace the problem.
Avatar of Zvonko
Hello Garry,

this line:
function STLinksLoggedIn("<username>","<name>")

is a function DEFINITION statement.

You can not put constants as function parameter.
It has to be parameter names without quotas.

Try this:
function STLinksLoggedIn()
{
STLinksEnterPlace(SameTimeTest);
}



Good luck,
Zvonko
Avatar of GaryZ

ASKER

The solution was a corrupted database, I had to restore it.
No comment has been added lately, so it's time to clean up this TA.
I will leave the following recommendation for this question in the Cleanup topic area:

PAQ with points refunded

Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!

jAy
EE Cleanup Volunteer
ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial