devin
devin

Reputation: 113

Javascript error; Uncaught SyntaxError: missing ) after argument list

I keep getting this error (Javascript error; Uncaught SyntaxError: missing ) after argument list) when trying to call a simple function. Everything works without calling it in a function but I need to do it multiple times.

function myFunction(ip, port, div) {
    $.get('http://mcping.net/api/'+ ip + ":" + port, function(data){
        console.log(data.online);
        $(div).html(data.online);
    });
}
myFunction(162.223.8.210, 25567, #factionsOnline)

Upvotes: 10

Views: 21325

Answers (1)

adeneo
adeneo

Reputation: 318182

You're missing a parentheses because you didn't quote your strings

myFunction('162.223.8.210', '25567', '#factionsOnline');

Upvotes: 11

Related Questions