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)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…