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:-
<SCRIPT LANGUAGE="JavaScript">
function DoubleOpen(site1, site2) {
window.open(site1);
window.location = site2;
}
</script>
and this goes into the body
<a href="javascript:DoubleOpen('site1', 'site2');">Click Here</a>
Example:-
<a href="javascript:DoubleOpen('http://www.codecall.net/', 'http://forum.codecall.net/');">Click Here</a>
Conclusion:-
As Always The Full Code Is Attached And Feedback Is Welcome!


Sign In
Create Account



Back to top









