Thread: onmouseout question
Results 1 to 3 of 3
Related
-
css question Forum: CSS Forum
Replies: 2 -
Another Question Forum: HTML Forum
Replies: 2 -
AnOtHeR QuEsTiOn Forum: HTML Forum
Replies: 1 -
Question Forum: HTML Forum
Replies: 2 -
another question... Forum: HTML Forum
Replies: 6
-
06-25-2002, 04:19 PM #1
onmouseout question
I have no access to <head> area, FYI.
Trying to have a small window with a description appear when someone scrolls over some text. Figured that out! Can I make it go away using the onmouseout=.......
So far all attempts yield closing the main page not the popup. Also, can it be done so that it bypass asking wether or not to close?
Thanks,
Kervin
Code:<a href="#" onmouseover="javascript:window.open('http://personal.atl.bellsouth.net/mco/b/o/bonetn/vfwring.htm','pop1','status=no,resizable=no ,width=200,height=140')" onmouseout="javascript:window.close('pop1');">Velium Fire Wedding Ring</a>
-
06-25-2002, 04:32 PM #2
Closing itself, unfortunately, your code asks it to do so. Try this -
Code:<a href="#" onmouseover="javascript:newwindow=window.open('http://personal.atl.bellsouth.net/mco/b/o/bonetn/vfwring.htm','pop1','status=no,resizable=no ,width=200,height=140')" onmouseout="javascript:newwindow.close();">Velium Fire Wedding Ring</a>
If one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
06-26-2002, 10:16 AM #3
Thanks, works great. I looked thru ahfb2000, dynamicdrive and javascriptkit's website. They all involved adding scripts to the <head> section of the document, which I had no acces to. Thanks again for looking into it.
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum