2cool Posted April 8, 2009 Share Posted April 8, 2009 I have created a pop-up window and that all works fine but when i click on the link for the pop-up window the original window with the link on changes to the pop-up window too. i don't want that to happen. I want the original window to stay to its original state.The code i have used is shown below: Header: <script language="javascript" type="text/javascript"> <!-- var win=null; function NewWindow(mypage,myname,w,h,scroll,pos){ if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;} if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;} else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20} settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no'; win=window.open(mypage,myname,settings);} // --> </script> And here's the rest of the code: <p align="center" onClick="myPopup5()"><font size="4" face="Comic Sans MS">For Help to complete Questionnaire Click on the 'HELP' button below!<br> <a href="http://localhost/final%20yr%20proj/helpQ.php" onClick="NewWindow(this.href,'helpForQ','400','600','yes','center');return false" onFocus="this.blur()"><strong><font size="5" face="Comic Sans MS">Help</font></strong></a> Can anyone help? Link to comment https://forums.phpfreaks.com/topic/153188-popup-window-changing-the-original-window-too/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.