Topic awaiting preservation: Combine onmouseover |
|
---|---|
Author | Thread |
Maniac (V) Inmate From: Florida |
posted 08-28-2002 18:16
Is there anyway to combine these two into one tag? code: onmouseover="return overlib('Description');" onmouseout="return nd();"
|
Obsessive-Compulsive (I) Inmate From: Unknown, MD, USA |
posted 08-28-2002 18:24
If you are trying to do what I think you are trying to do, then yes. code: onmouseover="return overlib(...); window.status='Description'; return true;" onmouseout="return nd();"
|
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 08-28-2002 18:58
Well, you can't return two things in the same function; after something is returned, the function ends. Try |
Obsessive-Compulsive (I) Inmate From: Unknown, MD, USA |
posted 08-28-2002 19:11
Good point.. I didnt look into it that far |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-29-2002 22:21
yeah, that was my take on it... |
Paranoid (IV) Inmate From: Madison, Indiana, USA |
posted 09-01-2002 04:48
code: onmouseover="window.status='Description'; return overlib('Description') && return nd();"
|
Paranoid (IV) Inmate From: France |
posted 09-01-2002 12:48
hyperbole: the syntax of your code is correct but it doesn't do what Kriek asked. |