|
 |
asp_databases thread: javascript:Mouseover
Message #1 by arshad siddiqui <ash_arshad@y...> on Sun, 17 Mar 2002 04:19:15 -0800 (PST)
|
|
Hi,
Somebody please give me the URL or the code for
mouseover event.Actually I wanna make a drop down menu
and I want it to be image.That is if you click on a
image an other image should be displayed besides it
and it sould have clickable items on it.
Thanks
Regards
--Arsad--
__________________________________________________
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/
Message #2 by "Drew, Ron" <RDrew@B...> on Mon, 18 Mar 2002 13:23:34 -0500
|
|
Not sure if you want mouseover or onclick. If you use mouseover, you
can change the visibility true/false to see the image, but then you
probably want an onclick to do something else. Do you have code?
Here is an example of a mouseover that just changes the cursor to a
hand...you can change this to do whatever you want.
<head>
<script language=3D"JavaScript">
<!-- for old browsers
function MouseHandlerOver( bPtr ) {
bPtr.style.cursor =3D "hand";
}
function MouseHandlerOut( bPtr ) {
bPtr.style.cursor =3D "default";
}
//-->
</script>
<body>
<INPUT TYPE=3D"submit" VALUE=3D"SUBMIT" id=3Dsubmit1 name=3Dsubmit1
ONMOUSEOVER=3D"MouseHandlerOver(this)"
ONMOUSEOUT=3D"MouseHandlerOut(this)">
-----Original Message-----
From: arshad siddiqui [mailto:ash_arshad@y...]
Sent: Sunday, March 17, 2002 7:19 AM
To: ASP Databases
Subject: [asp_databases] javascript:Mouseover
Hi,
Somebody please give me the URL or the code for
mouseover event.Actually I wanna make a drop down menu
and I want it to be image.That is if you click on a
image an other image should be displayed besides it
and it sould have clickable items on it.
Thanks
Regards
--Arsad--
__________________________________________________
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/
|
|
 |