![]() Topic awaiting preservation: Combine onmouseover (Page 1 of 1) |
|
---|---|
Maniac (V) Inmate From: Florida |
![]() 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 |
![]() 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 |
![]() 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 |
![]() Good point.. I didnt look into it that far |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
![]() yeah, that was my take on it... |
Paranoid (IV) Inmate From: Madison, Indiana, USA |
![]() code: onmouseover="window.status='Description'; return overlib('Description') && return nd();"
|
Paranoid (IV) Inmate From: France |
![]() hyperbole: the syntax of your code is correct but it doesn't do what Kriek asked. |