Declaring variables in JavascriptIf you are developing Javascript and you don't use Internet Explorer as your browser during development, make certain that you declare all of your variables using "var". In Firefox, Safari, and most other browsers, using variables in Javascript will *not* result in an error. But in Internet Explorer, if you use or set a variable that has not been declared, you will get an error message and your script will not run.
|

