Loghound.com themes & graphics courtesy of SeyDoggy
Want to have your flickr
photos open in a new window? easy. Insert the following
custom Javascript in your page using the inspector->Code
-> Custom Javascript.
Try the photos below to see
// Script to
force flickr photos to appear in an external window
var yourURL = "flickr.com";
function outLinks() {
var outLink;
if (document.getElementsByTagName('a')) {
for (var i = 0; (outLink =
document.getElementsByTagName('a')[i]); i++) {
if (outLink.href.indexOf(yourURL) >
0) {
outLink.setAttribute('target',
'_blank');
}
}
}
}
window.onload = outLinks;
// End of script -->