mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
8 lines
282 B
JavaScript
8 lines
282 B
JavaScript
function _nc_surf_page_overload() {
|
|
var ele = document.getElementsByTagName('a')
|
|
for(var i=0; i<ele.length; i++) {
|
|
if(ele[i].href.match(/^\w+:\/\//i) && !ele[i].href.match(/^.+\.neocities\.org/i))
|
|
ele[i].setAttribute('target', '_blank')
|
|
}
|
|
}
|
|
_nc_surf_page_overload()
|