Skip to content

Instantly share code, notes, and snippets.

@pamelafox
Created May 17, 2012 05:56
Show Gist options
  • Save pamelafox/2716823 to your computer and use it in GitHub Desktop.
Save pamelafox/2716823 to your computer and use it in GitHub Desktop.
JS Errors and Causes
These arent always the causes, just in the cases I saw them.
Unexpected {
Cause: mismatched curly braces, count your braces
Unexpected token .
Cause: var buttonDiv.bla = 4
SyntaxError: Unexpected string
Cause: var bla = bla + ' hi ' ' you'
Cannot read property stuff of null
Cause: document.getElementById('bla').stuff - bla ID is wrong, either mis-spelled or wrong case (check your ID, copy and paste)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment