SyntaxFix
Write A Post
Hire A Developer
Questions
You can use this
function LinkCheck(url) { var http = new XMLHttpRequest(); http.open('HEAD', url, false); http.send(); return http.status!=404; }