Change the mouse pointer
Posted in Cool Code Of The Day on November 4th, 2010 by mbrandt29To change the cursor from an arrow to a pointer, for example, use the following code:
.whatever {
cursor:pointer;
}
To call attention to a clickable area.



