Thanks for the site. But that is too long and complecated. I wanted a simple solution and this is waht I found.
There is a very simple curosr property in CSS. The cursor property specifies the type of cursor to be displayed when pointing on an element.
Example
h2
{
cursor: crosshair
}
or,
p
{
cursor : url("first.cur"), url("second.cur"), pointer
}
It works only in IE. As you can see you can assign the cursor to specific HTML attributes, like paragraph or header. You can use an URL to a curosr picture or you can use one of the default IE cursors. These are available:
pointer: The cursor render as a pointer (a hand) that indicates a link
move: The cursor indicates something that should be moved
e-resize: The cursor indicates that an edge of a box is to be moved right (east)
ne-resize: The cursor indicates that an edge of a box is to be moved up and right (north/east)
nw-resize: The cursor indicates that an edge of a box is to be moved up and left (north/west)
n-resize: The cursor indicates that an edge of a box is to be moved up (north)
se-resize: The cursor indicates that an edge of a box is to be moved down and right (south/east)
sw-resize: The cursor indicates that an edge of a box is to be moved down and left (south/west)
s-resize: The cursor indicates that an edge of a box is to be moved down (south)
w-resize: The cursor indicates that an edge of a box is to be moved left (west)
text: The cursor indicates text
wait: The cursor indicates that the program is busy (often a watch or an hourglass)
help: The cursor indicates that help is available (often a question mark or a balloon)
_________________
“You might say reality is the result of complex negotiations between the observer and the observed. But that is simply a point of view…”
Digital Bangladesh