How to open multiple links just in one click

After googling search the code that could open multiple links and I found it. Let's check it out.

Put the following code at tag <head> </head>:

<script type="text/javascript">
function open_win() {
window.open("http://url1.com")
window.open("http://url2.com")
window.open("http://url3.comm")
window.open("http://etc.com")
}
</script>

The next, put the following code at <body> </body>:

<form>
<input type=button value="Cee Lok Baa" onclick="open_win()">
</form>

Save. That's all. Now you can modify it.

No comments:

Post a Comment