How do i set my links to open in new tabs and windows?
How do i set my links to open in new tabs and windows?
target="_new" in your <a> tag will give you a new window. I'm not sure how it works with tabbed browsing, though.
any way to do it to more than one at once?
You would have to use javascript to open two or more windows;
<script language="JavaScript">
<!--
function newWindows() {
win1=window.open('http://www.webproworld.com','win1','status=1,scrollbars=1 ,toolbar=1,resizable=1,width=800,height=600');
win2=window.open('http://www.google.com','win2','status=1,scrollbars=1,tool bar=1,resizable=1,width=800,height=600');
}
//-->
</script>
Then in your link;
New Windows
What he said.