Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why am I getting : Uncaught SyntaxError: Unexpected token ILLEGAL here

I have this simple script:

    ids="22656"
    url = "http://api.stackoverflow.com/1.0/users/"+ids+"/timeline";
    console.log( url );
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open(“GET”, url ,true);
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4) {
            console.log( xmlhttp.responseText );
        }
        xmlhttp.send( null );
    };    

But I don't quite understand why I'm getting:

Uncaught SyntaxError: Unexpected token ILLEGAL

Can someone shed some light on this?

like image 439
OscarRyz Avatar asked Dec 28 '22 00:12

OscarRyz


1 Answers

The quotes around GET are not proper. You must use standard single or double quotes for strings.

like image 57
jordancpaul Avatar answered Jan 11 '23 23:01

jordancpaul