THE BLASTSED CODE 0 ERROR.
IE6 - Line: 2 Char: 1 Error: Syntax error Code: 0
I've read about this in other forums, with no solutions. What I've done is override another function defined in an external .js file (3rd party).
Even though I have an error in IE6, the script still works fine and completes fine. In addition, the debugger built in to firefox says there are no errors or warnings whatsoever.
My script works fine in all browsers, but have that yellow exclamation mark on the bottom left of the IE6 browser just looks bad.
1. What the heck does Code: 0 mean?
2. What is the proper syntax to override an existing function from an external .js file? I tried both formats:
function myfunc(param1, param2)
or
myfunc = function(param1, param2)
ps: remember, my function actually is working fine in ie6, so as for why ie6 is barfing Code 0 is beyond me!
IE6 - Line: 2 Char: 1 Error: Syntax error Code: 0
I've read about this in other forums, with no solutions. What I've done is override another function defined in an external .js file (3rd party).
Even though I have an error in IE6, the script still works fine and completes fine. In addition, the debugger built in to firefox says there are no errors or warnings whatsoever.
My script works fine in all browsers, but have that yellow exclamation mark on the bottom left of the IE6 browser just looks bad.
1. What the heck does Code: 0 mean?
2. What is the proper syntax to override an existing function from an external .js file? I tried both formats:
function myfunc(param1, param2)
or
myfunc = function(param1, param2)
ps: remember, my function actually is working fine in ie6, so as for why ie6 is barfing Code 0 is beyond me!