Sorry thats not right, typing without thinking here ...
It means that you have not defined the specified variable within your script OR you can not access it through were you are trying to access it from OR you may have a syntax problem
The main reasons I've found for that type of message are:
You misspelled the name of the variable either when you defined it or when you reference it. Remember JS is case-sensitive.
The variable is out of scope. You may have defined it in one function and tried to reference it in another. Define it outside of any functions to solve this problem.
You are trying to use a property or method that is undefined, or the object reference is undefined.
Meddle not in the affairs of dragons,
for you are crunchy, and good with mustard.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.