I
have been using a simple JavaScript call function to open multiple
sites on a single click. This function declares several URL’s in its
body and once the function is called either through a hyperlink or an
image, the click triggers the function and all URLs declared open up in
new browser tab window. I have been using this simple trick on my EntreCard traffic service and you can surely check out that page as a demo. Lets learn how to create such a link.
Create List of URLs
Write down all website URLs by using the simple code below,<!-- MBT MULTIPLE LINKS CODE -->
<script type='text/javascript'>
//<![CDATA[
function LINKNAME() {
var http = "LINK1";
var win1 = window.open(http);
var http = "LINK2";
var win1 = window.open(http);
var http = "LINK3";
var win1 = window.open(http);
var http = "LINK4";
var win1 = window.open(http);
}
//]]>
</script>
- Replace LINKNAME with anything you wish to write. Replace it with any name you may remember say for example "multiplelinks"
- Replace Link1,2,3,4 with your URLs. A URL/link should contain http:// For example: http://www.mybloggertricks.com
- To add another link simply add the following code above }
var http = "LINK5";Once done then add the code to blogger by following these steps:
var win1 = window.open(http);
- Go To blogger > Design > Edit HTML
- Search for </head>
- Paste the large code above just above </head>
- Save your template.
Create a Hyperlink or Image Link
Now there are two ways in which you can open these sites. You can either trigger them all using a simple text link or you can use a cute image as I did on the demo page.Text Link Method:
Use this code anywhere on your post editor or sidebar to make the link appear which when clicked will open multiple/several sites
Outcome:
<a rel="nofollow" href="javascript:LINKNAME()">link text</a>
Link 1 Click it carefully! :)
Make sure that LINKNAME matches in this code and the previous Javascript I shared above. If you have written a different name for it then keep both names same for the above code and this one.
Replace link text with anything you wish to write to display the link name.
Image Link Method:
<a rel="nofollow" href="javascript:LINKNAME()"><img src="Image Link" /></a>In this case all steps are same except that now you need to add an image instead of displaying link text. Kindly replace Image Link with the URL of your uploaded image.
Outcome:
Click it carefully! :)