[SOLVED] Syntaxerror: '' String Literal Contains An Unescaped Line Break
			 👤 By webune | 📆 
		
	SyntaxError: '' string literal contains an unescaped line break
This error means that you have syntax in your code whis you did not add the quotes or doublequotes.
for example: BAD: $('#myID).show();
as you can see from the example above, we did not put the closing single quote for the element.
 
Webune Team.