Pointer Properties

G

Glen

Hi, I'm using Behaviors to Open A New Window, on click, and go to a new URL.
This is done on an image map.

Everything works fine, except that the pointer does not change to the little
hand when you point at the image map. The result is that users can not
immediately tell that there is a hyperlink. Since it is an image map, I
can't do something simple like swap images.

Does anyone know if there is a way to program a pointer change?
 
C

clintonG

The pointer can be modified using CSS noting the hand property is
proprietary to IE which it is supposed to display by default but when
declared in CSS will choke the W3C CSS validator. The pointer property is
supported by other browsers.

a {
cursor: pointer;
cursoer: hand;
}
 
M

Murray

But that's hitting a fly with a sledgehammer. The simple solution is to NOT
mess with the pointer but to fix the code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top