Hand Cursor is Fluctuating in IE 6, in jquery handle slider. Some one help me out :-(

Recommended Answers

All 3 Replies

Try this:

/* Is it anchor link */
a:hover {
     cursor: pointer
    }
/* else div or span */
div:hover {
    cursor: pointer
    }

You don't have to use JQuery. In CSS there is a cursor property you can assign to divs:

div {
cursor:hand;
}

I discovered that not having enough memory in the computer also causes this. The computer is swapping things out to disk and bringing them back in.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.