Log in

View Full Version : All links in page open in the special window size



mostafa
08-26-2006, 10:35 PM
Hello
I have a page whit many links ( for example a Dictionary ) ,I want all links in this page open in the special window size whitout scroll ,statusbar,toolbar,.....
I have script for one link but I want a one code for all links or the script which I can insert in head of main page for all links .
pls help me ....

mburt
08-26-2006, 10:38 PM
I think... this is what you're looking for:


window.onload=function() {
for (i=0;i<=document.links.length-1;i++) {
document.links[i].target="_blank"
}
}