Skip to content

Instantly share code, notes, and snippets.

@sorunis
sorunis / v2newtab
Created November 19, 2014 02:10
make all links on current page to open in new tab / window
javascript:(function(doc){var alist = doc.getElementsByTagName('a');for(var i = 0; i < alist.length; i ++){alist[i].target = "_blank";}})(document)