check if image exist javascript code example
Example 1: javascript how to check if image exists
const xhr = new XMLHttpRequest();
xhr.onload = () => {
if (xhr.status == 200) {
console.log('Image exists.');
} else {
console.log('Image does not exist.');
}
};
xhr.open('HEAD', '/img/bulb.svg');
xhr.send();
Example 2: js check if image url exists
function checkImage(url) {
var request = new XMLHttpRequest();
request.open("GET", url, true);
request.send();
request.onload = function() {
status = request.status;
if (request.status == 200)
{
console.log("image exists");
} else {
console.log("image doesn't exist");
}
}
}
checkImage("https://picsum.photos/200/300");