OPEN MULTIPLE BROWSER TABS WITH ONE CLICK - Jul 3rd, 2011


Ever want to open multiple tabs with one click, say a program and it's help document at the same time?

Here's one approach using javascript:

May not work in all browsers (IE 9 has issues)




<a href="javascript:open_wins()">click</a>

<script>
function open_wins(){
window.open("http://www.google.com");
window.open("http://www.jkwebdesigns.com");
window.open("http://www.your_site.com");
window.open("http://www.thecmsbcookbook.com");
}
</script>

_



The materials on this web site have been created for use with CMS Builder content management software. CMS Builder software is published and licensed for use by InteractiveTools.com. Please contact Interactive Tools for information on the downloading of the software or the purchasing of licenses.


Terms of Service