Chrome: Uncaught SyntaxError: Unexpected end of input Chrome: Uncaught SyntaxError: Unexpected end of input google-chrome google-chrome

Chrome: Uncaught SyntaxError: Unexpected end of input


This particular error is one annoying fact about . In most cases your JavaScript is broken in some way. For example missing a } or something like that.

Example given, this will yield "Unexpected end of input" too:

eval('[{"test": 4}') // notice the missing ]

But the root cause of the problems seems to be that the requested JSON url has a Content-Type of text/html which Chrome apparently tries to parse as HTML, which then results in the unexpected end of input due to the fact that the included image tags are being parsed.

Try setting the Content-Type to text/plain I think it should fix the issues.

Nonetheless, V8 could do a better Job about telling one exactly where the input ended unexpectedly.


Try Firebug for Mozilla - it will show the position of the missing }.

http://getfirebug.com/


See my case on another similar question:

In my case, I was trying to parse an empty JSON:

JSON.parse(stringifiedJSON);

In other words, what happened was the following:

JSON.parse("");