gulliver
11-30-2003, 12:46 PM
I use (non auto-opening, triggered by onclick) popup miniwindows throughout my site to display supplementary info without taking the user from the main page.
They're very simple... javascript with redundant href to cover if javascript disabled.
The page contains this code...
---------
<a href="URL/" onClick="OpenMiniWindow(this.href); return false" target="newWin">link</a>
---------
And is linked to a master.js file containing...
-----------
// Open MiniWindow
function OpenMiniWindow (c) {
window.open(c,
'miniwindow',
'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=450, height=400,left=0,top=0');
}
-----------
My question is simply... how are they affected by the various popup blockers? As a Mac user, I can't simply download and try what's mainly a PC thing.
They're very simple... javascript with redundant href to cover if javascript disabled.
The page contains this code...
---------
<a href="URL/" onClick="OpenMiniWindow(this.href); return false" target="newWin">link</a>
---------
And is linked to a master.js file containing...
-----------
// Open MiniWindow
function OpenMiniWindow (c) {
window.open(c,
'miniwindow',
'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=450, height=400,left=0,top=0');
}
-----------
My question is simply... how are they affected by the various popup blockers? As a Mac user, I can't simply download and try what's mainly a PC thing.