Camicia 1 Posted September 7, 2015 Posted September 7, 2015 Try this in console on any page (with at least a link): (function(){ function openAll(){ window.open("http://www.lifehack.org/articles/communication/how-to-be-awesome-at-life.html", "newone"); } Array.prototype.forEach.call(document.querySelectorAll("a"), function(el){ el.addEventListener("click", function(e){ e.preventDefault(); openAll(); }); }); })();Click on any link on the page. It should open "http://www.lifehack.org/articles/communication/how-to-be-awesome-at-life.html"Now try to clip the content of this page. And the clip goes crazy. It has problems with any link. Not just http://www.lifehack.org/articles/communication/how-to-be-awesome-at-life.html
Idea
Camicia 1
Try this in console on any page (with at least a link):
Click on any link on the page.
It should open "http://www.lifehack.org/articles/communication/how-to-be-awesome-at-life.html"
Now try to clip the content of this page. And the clip goes crazy.
It has problems with any link. Not just http://www.lifehack.org/articles/communication/how-to-be-awesome-at-life.html
0 replies to this idea
Recommended Posts
Archived
This topic is now archived and is closed to further replies.