Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can I deactivate the hand on the mouse over

Status
Not open for further replies.

photoxprt1868

Programmer
Jul 22, 2005
76
US
Hello,

I have a menu with a top level menu made up with images and sublevels made with javascript. The top level images are just linked to #, they just activate the JS drop downs. On the top level images, can I deactivate the hand on the mouse over some how?

Thank you
 
use the hover pseudo class:
Code:
<html>
<head>
<style type="text/css">

a:hover {
   cursor:default;
}

</style>
</head>
<body>

<a href="#" onclick="alert('hi')">Click Me</a>

</body>
</html>

-kaht

How much you wanna make a bet I can throw a football over them mountains?
sheepico.jpg
images
 
I would have had to copy/paste it from another file.....

I use textpad for pretty much everything, and I'm pretty sure it doesn't fill in any blanks for you like other editors can.

-kaht

How much you wanna make a bet I can throw a football over them mountains?
sheepico.jpg
images
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top