bodich
·
Oct 26, 2017
·
Viewed 8.2k times
·
Source
I cannot find any option in preferences that can hide this annoying signs. I am coding Photoshop Script and errors detection works absolutely incorrect here. Any ideas how to disable it? It appeared in new Brackets version.
I have some JavaScript code that works in FireFox but not in Chrome or IE.
In the Chrome JS Console I get the follow error:
"Uncaught SyntaxError: Unexpected end of input".
The JavaScript code I am using is:
<script&…
I'm getting this JavaScript error on my console:
Uncaught SyntaxError: Unexpected token ILLEGAL
This is my code:
It's super simple, as you can see. How could it be causing a syntax error?
I am getting the error:
SyntaxError: missing ) after argument list
With this javascript:
var nav = document.getElementsByClassName('nav-coll');
for (var i = 0; i < button.length; i++) {
nav[i].addEventListener('click',function(){
console.log('haha');
}
}, false);
};
What does this error mean?