RE: FN-FORUM: popup problems
date posted 19th August 2004 19:25
> I've added a map that pops up from the text link 'click here' on this
> page.
>
> http://www.elshaddai.org.uk/directions.html
>
> The code is onMouseDown="MM_openBrWindow('londonmap.html','','status=yes,scrollbars=
> yes,width=488,height=338')">click here
>
> For some strange reason, the whole page pops up as well on top, any
> ideas?
>
try a 'return false;' after your function call to cancel the event.
i.e.
onMouseDown="MM_openBrWindow('londonmap.html','','status=yes,scrollbars=yes,
width=488,height=338');return false;">click here
hth
rich