Skip to content

Instantly share code, notes, and snippets.

View fcantor's full-sized avatar
🤖
Forever learning to build better, more secure applications

Francesca Cantor fcantor

🤖
Forever learning to build better, more secure applications
View GitHub Profile
@fcantor
fcantor / linkchecker.js
Created July 7, 2020 21:32 — forked from eviltester/linkchecker.js
link checking from snippets
var links = document.querySelectorAll("a");
var linkReport = [];
var linksChecked=0;
links.forEach(function(link){
var reportLine = {url: link.getAttribute('href'), status:0, redirectedTo: "", message : "", element : link};
linkReport.push(reportLine);
console.log("HEAD " + reportLine.url);