Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a list, and I have a click handler for its items:

<ul>
  <li>foo</li>
  <li>goo</li>
</ul>

How can I change the mouse pointer into a hand pointer (like when hovering over a button)? Right now the pointer turns into a text selection pointer when I hover over the list items.

Thanks.

share|improve this question
5  
FYI, I retagged your question by removing "jquery" and adding "css" to more accurately reflect the nature of your question and the answer to it. – Christopher Parker Jun 21 '10 at 19:52
A good reference list for changing the cursor to a hand and other icons available in css. javascriptkit.com/dhtmltutors/csscursors.shtml – Neil Aug 24 '11 at 5:04

5 Answers

up vote 259 down vote accepted

Actually to expand on the previous answers, different browsers use different names.

li { cursor: hand; cursor: pointer; }

Will cover you in all cases.

share|improve this answer
It's funny how these questions make people google the same page :) Good point though. +1 – Denis 'Alpheus' Cahuk Jun 21 '10 at 20:03
FWIW, I didn't google :) Just something I deal with day-to-day :) Thanks for the + though! – Aren Jun 22 '10 at 17:28
18  
It's worth noting that just doing cursor: pointer is good enough for everything above IE 5.5: quirksmode.org/css/cursor.html – ripper234 Feb 19 '12 at 8:59
4  
But my company forces me to use IE 5.5 – Kyle Jun 11 '12 at 17:43
3  
@Kyle: Not Sure if serious or satirical. Even so, if that's true; that sucks! Hopefully this helps. :) – Aren Jun 11 '12 at 20:00
show 2 more comments

You do not require jQuery for this, simply use the following css:

li {cursor: pointer}

And voilĂ ! Handy.

share|improve this answer
13  
I think you mean voila (or, if you want to be even more pedantic, voilà). Unless, that is, you sit in the middle of the string section of an orchestra. :) – Robusto Jun 21 '10 at 19:54
3  
I stand corrected. The pointer shall always remind me of this. Oh no, there's the pointer again! – Denis 'Alpheus' Cahuk Jun 21 '10 at 20:02

use

cursor: pointer;
cursor: hand;

if you want to have a crossbrowser result!

share|improve this answer
li:hover {
    cursor: pointer;
}

Other valid values (which hand is not) for the current HTML spec can be viewed here.

share|improve this answer

This thread is getting out of hand, it quickly went from cursors to string instruments. :)

Thankfully Google always sends me here when I need a quick reminder, for complete cross browser, use:

cursor: pointer;
cursor: hand;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.