Question
How can i make the user aware of a button (OnClick Event) when there is now link (HREF) attached ?
Answer
Use a CSS style with a OnMouseOver event.
Create the following style in your document or CSS:
<style type="text/css">
<!--
.cursor { cursor: hand}
-->
</style>
Attach it to the OnClick Event:
OnMouseOver="this.className='cursor';"
Marcellino Bommezijn is one of the managers at dmxzone.com. He is a contributor on the tutorials section.



Comments
Nagendra Rentala
RE: Prevent default page number - url while pritning
Nagendra Rentala
Prevent default page number - url while pritning
How can I prevent the page number and url being printed by default along with the web page content? I do not see these as options on my printer dialog box either.
Thanks for the help,
Nagu Rentala
Marcellino Bommezijn
RE: Custom hand cursor
Point to the URL where the custom cursor is located. Something like this:
cursor:url(mycursor.ani)
This will probably only work where this class is defined in your page (hyperlinks) and not outside.
Roberto Bellina
Very usefull!!