• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Syntax Error?

kgdb

Senior member
What exactly is a Syntax Error? I get this when viewing some pages with IE but I dont get it if I view pages in Netscape. Any input would be great. Thanks
 
if you're talking about webpages, most of the time it will be javascript error or other scripts.

basically syntax error is what it is ... syntax error ....
syntax is the "grammar" of programs ... eg of a syntax to print a text would be like this:
printf "Hello World";

if the programmer typed the wrong thing, eg:
print "Hello World";

and missed the "f", it would cause the syntax to be wrong, and the program won't work correctly, and then gives you a syntax error

Sometimes if it's javascript syntax error, msie will popup the error unless you specified it not to (or it will tell you by the small triangle on the bottom left). netscape will also tell you, but a bit indirectly. you can try to type in " javascript: " (without the quotes) and it will popup the window with the syntax errors, if it is a javascript error.

-702-
 
Back
Top