Mouse Action

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
szms
Forum Contributor
Posts: 101
Joined: Thu Jun 26, 2003 12:23 pm

Mouse Action

Post by szms »

How can I activate (code) so that when my mouse points any link it will show differently (probably large in size with differnet color).
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

take a look at http://www.w3.org/TR/REC-CSS2/ui.html#cursor-props

Code: Select all

<html>
	<head>
		<title></title>
		<style type="text/css">
			a &#123; cursor: help; &#125;
		</style>
	</head>
	<body>
		<a href="javascript:void(0)">test</a>
	</body>
</html>
Post Reply