Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eliminate 404 url error in console?

I try to eleminate an 404 error occuring because the source (src) is missing..

var $chart = $("<img />")
    .addClass("trend-pic")
    .error(function(){
        console.log("error loading..")
    });
try{
    $chart.attr("src", jobs[counter].url + "test/trend")
}catch(err){
    $chart.attr("src", "");
}    

if tried many stuff to catch the error i.e. putting an .error(function(){}) at the end. use the $chart.load() - method to check if the images gets loaded? Non of those helped?

GET {myURLString} 404 (Not Found)

Browser: Safari

like image 428
user1750098 Avatar asked Oct 16 '12 13:10

user1750098


1 Answers

You can't really delete those 404 errors from the console. The best you can do is make some ajax calls and see the return code, but then you'll be limited to request only to your own domain.

EDIT--

Oh, and yes, those errors will keep showing in the "Requests" tab! They just won't appear in the "Console" tab (in Chrome).

like image 53
alexandernst Avatar answered Sep 24 '22 23:09

alexandernst