0
I’m trying to make a request in this format
$.get("http://meuurl.com/webservice", function (data) {
console.log(data);
}).fail(function (data) {
console.log(data);
});
But I get this mistake
Failed to load Resource: the server responded with a status of 500 (Internal Server Error)
$.get
utilize dataType and follow https://api.jquery.com/jquery.get/ .. if you can try$.ajax
also– KingRider