Reputation: 72232
I'm loading an image path via jQuery $.ajax and before showing the image I'd like to check if it in fact exists. Can I use the image load/ready event or something similar to determine that the file path is valid?
Having .myimage set to display: none, I'm hoping to do something like
$(".myimage").attr("src", imagePath);
$(".myimage").load(function() {
$(this).show();
});
Is anything like that possible?
Upvotes: 23
Views: 47643
Reputation: 65264
Well, you can bind .error()
handler...
Update: In jQuery 3.0 and later:
$(".myimage").on("error", function() {
$(this).hide();
});
note: .error()
was deprecated in jQuery 1.8 and removed in 3.0 but in in older versions you can:
$(".myimage").error(function(){
$(this).hide();
});
well, yours is okay already with load-event
$(".myimage").load(function() {
$(this).show();
});
the problem with this is if Javascript was disabled the image will not ever show...
Upvotes: 34
Reputation: 1
This is what I did of mine:
$.get( 'url/image', function(res){
//Sometimes has a redirect to not found url
//Or just detect first the content result and get the a keyword for 'indexof'
if ( res.indexOf( 'DOCTYPE' ) !== -1 ) {
//not exists
} else {
//exists
}
});
Upvotes: 0
Reputation: 436
An old thread I know but I think it could be improved. I noticed OP having intermittent problems which could be due to loading of the image and error checking simultaneously. It would be better to let the image load first and then check for errors:
$(".myimage").attr("src", imagePath).error(function() {
// do something
});
Upvotes: 7
Reputation: 703
This question is a couple years old, but here's a better example usage for the error handler for anyone looking at this.
$("img")
.error(function(){
$(this).hide();
})
.attr("src", "image.png");
You need to attach the error handler before you try to load the image in order to catch the event.
Source: http://api.jquery.com/error/
Upvotes: 2
Reputation: 6411
Try:
function urlExists(testUrl) {
var http = jQuery.ajax({
type:"HEAD",
url: testUrl,
async: false
})
return http.status;
// this will return 200 on success, and 0 or negative value on error
}
then use
if(urlExists('urlToImgOrAnything') == 200) {
// success
}
else {
// error
}
Upvotes: 22
Reputation: 9709
Since you're already doing an AJAX request, I would offload this to the server-side app that is supporting your AJAX. It's trivial to check to see if a file exists from the server, and you could set variables in the data you send back to specify results.
Upvotes: 4