Is there any way to prevent http errors to appear in the console?
E.g. when I try to geo locate the user ip I call
$.get( "https://freegeoip.net/json/", function( data ) {
alert( "Load was performed." );
});
I sometimes get a 503 and cannot catch it before it is displayed to my users in the console.
Try / catch does not seem work here.