javascript popup issue In Internet Explorer ! - Stack Overflow

i have Problem with opening popups in javascript i have this function to open my popups in IE6 and IE7:

i have Problem with opening popups in javascript i have this function to open my popups in IE6 and IE7:

function open_window(Location,w,h) //opens new window
{
  var win = "width="+w+",height="+h+",menubar=no,location=no,resizable,scrollbars,top=500,left=500";
  alert(win) ;
  window.open(Location,'newWin',win).focus();

}

it's working . i mean my new window opens but an error occurs. The Error Message is :

'window.open(...)' is null is not an object.
do you want to countinue running script on this page ?

then i have button in onclick event it's will call a function to close current window an refresh the opener function is

function refreshParent(location) 
{
  window.opener.location.href = location ; 
  window.close();
}

it's also gives me error : window.opener.location is null or not an object but i'm sure i'm passing correct parameters

i call it like this :

for second part :

<input type="button" name="pay" value="test" onclick="refreshParent('index.php?module=payment&task=default')" >

for first part :

<a onclick="javascript:open_window('?module=cart&task=add&id=<?=$res[xproductid]?>&popup=on','500' , '500')"  style="cursor:pointer" id="addtocard"> <img src="../images/new_theme/buy_book.gif" width="123" border="0"/> </a>

it's really confuse me . Please Help ;)

i have Problem with opening popups in javascript i have this function to open my popups in IE6 and IE7:

function open_window(Location,w,h) //opens new window
{
  var win = "width="+w+",height="+h+",menubar=no,location=no,resizable,scrollbars,top=500,left=500";
  alert(win) ;
  window.open(Location,'newWin',win).focus();

}

it's working . i mean my new window opens but an error occurs. The Error Message is :

'window.open(...)' is null is not an object.
do you want to countinue running script on this page ?

then i have button in onclick event it's will call a function to close current window an refresh the opener function is

function refreshParent(location) 
{
  window.opener.location.href = location ; 
  window.close();
}

it's also gives me error : window.opener.location is null or not an object but i'm sure i'm passing correct parameters

i call it like this :

for second part :

<input type="button" name="pay" value="test" onclick="refreshParent('index.php?module=payment&task=default')" >

for first part :

<a onclick="javascript:open_window('?module=cart&task=add&id=<?=$res[xproductid]?>&popup=on','500' , '500')"  style="cursor:pointer" id="addtocard"> <img src="../images/new_theme/buy_book.gif" width="123" border="0"/> </a>

it's really confuse me . Please Help ;)

Share Improve this question edited Jun 13, 2009 at 9:00 Cerebrus 25.8k8 gold badges58 silver badges71 bronze badges asked Jun 13, 2009 at 8:50 mehdimehdi 9,50211 gold badges36 silver badges36 bronze badges 3
  • Sounds like a Popup blocker issue. – Cerebrus Commented Jun 13, 2009 at 9:08
  • however it still gaves me error Please Check this site www.pouran unfortunately this web site in Persian language and i don't think you are fort with that . so if you can go ahead and try to add something to your basket then you see the error message . tanks . – mehdi Commented Jun 13, 2009 at 11:55
  • Well I didn't understand a single word, but I think I managed to find the page in question. I also maneged to open the popup and close it from the button inside that - after that the page refreshed itself. I didn't notice any errors. Everything seemed to work just fine. Maybe it's something in your puter? Have you tried it in someone elses? – Rene Saarsoo Commented Jun 13, 2009 at 15:26
Add a ment  | 

3 Answers 3

Reset to default 6

When popup windows opened using window.open are blocked by a popup blocker, a feature of pretty much any modern browser these days, the return value of window.open() is not a window object, but null.

In order to circumvent these issues you would need to test the value returned by window.open() before attempting to invoke any methods on it.

Below is a piece of code to demonstrate how to go around this problem:

function open_window(Location,w,h) //opens new window
{
  var options = "width=" + w + ",height=" + h;
  options += ",menubar=no,location=no,resizable,scrollbars,top=500,left=500";

  var newwin = window.open(Location,'newWin',options);

  if (newwin == null)
  {
    // The popup got blocked, notify the user
    return false;
  }

  newwin.focus();
}

In general, popup windows should be used only as a last resort or in controlled environments (internal pany website, etc). Popup blockers tend to behave in very inconsistent ways and there may be more than a single popup blocker installed in a given browser so instructing the user on how to allow popups for a given website is not necessarily a solution. Example: IE7 + Google toolbar = two popup blockers.

If I may suggest, perhaps you should consider using something like this: http://jqueryui./demos/dialog/

The advantages are numerous:

  1. Skinnable, so you can create a more consistent look to match your website.
  2. No popup blockers.
  3. Good API and documentation that is consistent across most, if not all, major browsers.

If you still require that the newly opened "window" contain an external URL, you could use an IFRAME inside the opened dialog window.

Hope this helps,

Lior.

Works perfectly fine for me. Tested in IE6/7/8.

Of course I couldn't test it with your URLs so I replaced these with simple filenames. I'd suggest you try it also with simple filenames and see if it also fails then.

Beside that...

You don't need to add "javascript:" at the beginning of onclick attribute value.

It would also be good if you added a href="..." attribute to the link with the same URL that you give to open_window. Then it would bee a real link and you wouldn't have to add cursor:pointer to it. For example:

<a href="?module=cart&task=add&id=<?=$res[xproductid]?>&popup=on"
   onclick="open_window(this.href, '500' , '500'); return false;"> ...

Here is a way to have your cake and eat it too I have not tested it on all browsers but it should really work

function open_window(url,target,w,h) { //opens new window 
  var parms = "width="+w+",height="+h+",menubar=no,location=no,resizable,scrollbars,top=500,left=500";
  var win = window.open(url,target,parms);
  if (win) {
    win.focus();
    return false; // cancel the onClick
  }
  return true; // make the link perform as normal
}

Using the link

<a href="?module=cart&task=add&id=<?=$res[xproductid]?>&popup=on"
target="newWin" 
onclick="return open_window(this.href,this.target,500,500)"
id="addtocard"><img src="../images/new_theme/buy_book.gif" width="123" border="0"/></a>

which even saves you the silly cursor thing since it is an actual link which works even when JS is turned off

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743695021a4491611.html

相关推荐

  • javascript popup issue In Internet Explorer ! - Stack Overflow

    i have Problem with opening popups in javascript i have this function to open my popups in IE6 and IE7:

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信