J
Just D.
Does anybody know the way to detect a popup blocker in the Internet
Explorer? I was thinking that I know but the customers got a situation when
I wasn't able to detect the Yahoo Toolbar Popup Blocker and the app screwed
up. I'm using this code in ASPX page right now:
var wobj =
window.open(somepage,pagename,"toolbar=no,statusbar=no,menubar=no,resizable=yes,location=no")
if (wobj==null) {
top.location.href = 'PopUpBlockerInfo.aspx';
} else {
...
}
What's a better way to do that?
Just D.
Explorer? I was thinking that I know but the customers got a situation when
I wasn't able to detect the Yahoo Toolbar Popup Blocker and the app screwed
up. I'm using this code in ASPX page right now:
var wobj =
window.open(somepage,pagename,"toolbar=no,statusbar=no,menubar=no,resizable=yes,location=no")
if (wobj==null) {
top.location.href = 'PopUpBlockerInfo.aspx';
} else {
...
}
What's a better way to do that?
Just D.