I have been working to resolve this issue for days, and I am extremely new at this so please don't be tempted to laugh at my code - I just don't know any better yet...
I did post a question similar to this the other day, and while I appreciate those of you that responded, the responses were way over my head. (Even though I did mention I was a newbie)
If anyone knows why this code isn't working, please do respond. Here is my code to try to get a popup from the main window and a popunder from the main window simultaneously.
<body>
<SCRIPT TYPE="text/javascript">
<!--
function popunder(link2, winname)
{
window.open("http://www.freeshipping.com","FreeShippingDomain")}
window.focus()
window.blur()
//-->
</SCRIPT>
<A HREF="http://www.mypage.html" onClick="window.open('http://www.mypage.html','win1', 'width=310, height=440');return false" onmousedown="popunder('http://www.mypage2', 'win2'); return false">Click this link</A>
</body>
Again, assume I know almost nothing about javascript if you respond to this post... and thank you in advance for dumbing down the answer...
I did post a question similar to this the other day, and while I appreciate those of you that responded, the responses were way over my head. (Even though I did mention I was a newbie)
If anyone knows why this code isn't working, please do respond. Here is my code to try to get a popup from the main window and a popunder from the main window simultaneously.
<body>
<SCRIPT TYPE="text/javascript">
<!--
function popunder(link2, winname)
{
window.open("http://www.freeshipping.com","FreeShippingDomain")}
window.focus()
window.blur()
//-->
</SCRIPT>
<A HREF="http://www.mypage.html" onClick="window.open('http://www.mypage.html','win1', 'width=310, height=440');return false" onmousedown="popunder('http://www.mypage2', 'win2'); return false">Click this link</A>
</body>
Again, assume I know almost nothing about javascript if you respond to this post... and thank you in advance for dumbing down the answer...
Comment