Two pop up window not open at the same time . Help Me
-
Hi , m working on a web application (Asp.net using c#) , in my master page there is some menus . by clicking them a pop up window open , but the problem is this when i minimize the first pop up window , and then open another pop up by clicking my menus nothing happend . for open new pop up window first i have to close the previous window , then next one window open , Can is it possible that i open 2 - 3 pop up windows at the same time . Thanx in adva ;) nce
-
Hi , m working on a web application (Asp.net using c#) , in my master page there is some menus . by clicking them a pop up window open , but the problem is this when i minimize the first pop up window , and then open another pop up by clicking my menus nothing happend . for open new pop up window first i have to close the previous window , then next one window open , Can is it possible that i open 2 - 3 pop up windows at the same time . Thanx in adva ;) nce
How you are opening the new window can you post your javascript code ?
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... " Check My Blog
-
Hi , m working on a web application (Asp.net using c#) , in my master page there is some menus . by clicking them a pop up window open , but the problem is this when i minimize the first pop up window , and then open another pop up by clicking my menus nothing happend . for open new pop up window first i have to close the previous window , then next one window open , Can is it possible that i open 2 - 3 pop up windows at the same time . Thanx in adva ;) nce
Check this <a href="http://www.google.com" target="_blank" >Click to open</a> If you want to open many window at one click write a javascript function for that onclick call that javascript function and open as many window you want I never tried this don't know but still you can check it
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... " Check My Blog
-
Hi , m working on a web application (Asp.net using c#) , in my master page there is some menus . by clicking them a pop up window open , but the problem is this when i minimize the first pop up window , and then open another pop up by clicking my menus nothing happend . for open new pop up window first i have to close the previous window , then next one window open , Can is it possible that i open 2 - 3 pop up windows at the same time . Thanx in adva ;) nce
Hi this code works fine , but can open two pop up window at the same time . I want to open many pop up window at the same time when i click on menus . function NewWindow(mypage,myname,w,h,scroll,pos) { if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):50;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-50)):50;} if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:50;TopPosition=(screen.height)?(screen.height-h)/2:50;} 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=yes'; win=window.open(mypage,myname,settings); }