473,509 Members | 2,918 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

why this ie javascript error?

IE keeps popping up an error "expected string identifier" for the
following snippet when a page is loading:
The debugger goes to the line with ,'querystring': bar, but it doesn't
highlight it.

All the variables are declared, and the code runs fine in firefox.

function foo(
{
'url':url
,'onSuccess':dofunction
,'onError':function(req)doerrorfunction
,'parameters':{ 'param1':value, 'param2:'another value',
}
,'querystring': bar
}
);

but when I change the code to:
function foo(
{
'url':url
,'onSuccess':dofunction
,'onError':function(req)doerrorfunction
,'parameters':{ 'param1':value, 'param2':'another value',
'bar':'bar value'
}

}
);

Apr 2 '06 #1
4 1244
VK

dave wrote:
'onError':function(req)doerrorfunction
What do you mean?
function(reg) {doerrorfunction();} ?

The original string has no sense in JavaScript.
,'parameters':{ 'param1':value, 'param2:'another value',


You seem already found this error - a quote is missing, must be
'param2':'another value',

Apr 2 '06 #2

VK wrote:
dave wrote:
'onError':function(req)doerrorfunction


What do you mean?
function(reg) {doerrorfunction();} ?

The original string has no sense in JavaScript.
,'parameters':{ 'param1':value, 'param2:'another value',


You seem already found this error - a quote is missing, must be
'param2':'another value',


the code doesn't quite make sense because it's a generalized snippet of
a piece of code I can't post on a google group.

I realized I mistyped. the code comparisons should be:

function foo(
{
'url':url
,'onSuccess':dofunction
,'onError':function(req)doerrorfunction
,'parameters':{ 'param1':value, 'param2':'another value',
}
,'querystring': bar
}
);

but when I change the code to:

function foo(
{
'url':url
,'onSuccess':dofunction
,'onError':function(req)doerrorfunction
,'parameters':{ 'param1':value, 'param2':'another value',
'bar':'bar value'
}

}
);

Apr 2 '06 #3
VK

dave wrote:
,'onError':function(req)doerrorfunction


Again: this line doesn't have sense syntaxically, no matter what amout
of code is being snipped off. It is like !@# = *&^ - you don't need to
see all code to point on such line ;-)

function(req)doerrorfunction statement is not allowed by language rules
(besides being meaningless) and leads to syntax error.

You already fixed the missing quote - after you fix this line the error
will disappear.

Apr 2 '06 #4
VK
Extra info:

Error 1028 "Expected identifier, string or number"
You used incorrect literal syntax to declare an object literal. The
properties of an object literal must be an identifier, a string, or a
number. An object literal (also called an "object initializer")
consists of a comma-separated list of property:value pairs, all
enclosed within brackets. For example: var point = {x:1.2, y:-3.4};

To correct this error:
Ensure you use the proper literal syntax.

(JScript 5.6 Reference)

Apr 2 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
3623
by: chrisdude911 | last post by:
how do i add video into a javascript web page with my own custom buttons?
0
7234
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7136
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7344
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
5652
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4730
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3216
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3203
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1570
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
441
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.