Mouse Action
Posted: Mon Oct 20, 2003 9:33 am
How can I activate (code) so that when my mouse points any link it will show differently (probably large in size with differnet color).
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<html>
<head>
<title></title>
<style type="text/css">
a { cursor: help; }
</style>
</head>
<body>
<a href="javascript:void(0)">test</a>
</body>
</html>