|
Post by Slinky on Apr 19, 2005 22:08:19 GMT -5
Popup blockers tell you when they've blocked something. The issue is that the icon doesn't even change into the little linky-hand when I put my mouse over the link.
|
|
|
Post by f0nx on Apr 20, 2005 6:18:21 GMT -5
and ur using mozilla ? what can we do to make it mozilla cmopatible than ?
|
|
|
Post by zynthetic on Apr 20, 2005 11:44:04 GMT -5
It's likely there's a function in the jscript or href tag that isn't standard.I found this laying around, just change whatever. <script language="javascript"> function openWin(file) { var popUpWidth = 770; var popUpHeight = 500; var popUpTop = (screen.height - popUpHeight) / 2; var popUpLeft = (screen.width - popUpWidth) / 2; window.open(file, 'Foobar', 'top='+popUpTop+',left='+popUpLeft+',height='+popUpHeight+',width='+popUpWidth); } </script>
<a href="page.html" target="_blank"onClick="javascript:openWin('page.html', '_blank', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes');return false;">clickclick</a>
|
|