javascript remove all links code example
Example 1: js remove all local storage
window.localStorage.clear(); //clear all localstorage
window.localStorage.removeItem("my_item_key"); //remove one item
Example 2: extract all link with javascript
$(document).ready(function(){
$('a').each(function(){
console.log($(this).attr('href'));
});
});