Html – How to replace href of all anchor tags in a bookmarklet?
I'm trying to make a bookmarklet that changes every link on a page to "https://www.youtube.com/watch?v=dQw4w9WgXcQ" and iv'e gotten this far: a.forEach(function(a){ a.href = "https://www.youtube.com/watch?v=dQw4w9WgXcQ"; }); alert("done."); The html editor shows that the href of the "a" tag has changed but…