Introduction:-
Well here I will show you how to open 2 links with just one click.
Solution:-
Here is the Code, insert this in the Head:-
Code:
<SCRIPT LANGUAGE="JavaScript">
function DoubleOpen(site1, site2) {
window.open(site1);
window.location = site2;
}
</script>
and this goes into the body
Code:
<a href="javascript:DoubleOpen('site1', 'site2');">Click Here</a>
Example:-
Code:
<a href="javascript:DoubleOpen('http://www.searchbuster.org/', 'http://www.searchbuster.org/forum');">Click Here</a>