I have placed cursor:pointer on a td but in Safari (on a mac) it only displays the default mouse cursor instead of changing to the little hand pointer which it does in every other browser.

Is anyone aware if there is a fix for this or is it unavoidable?

Update: The code is something like this:

HTML

<td class="someClass"><span>text here</span></td>

CSS

td.someClass { cursor:pointer; }
link|improve this question
usually this cursor works in Safari, pls give us a bit code. – DRP96 Jan 11 at 14:31
code and or link please?.. im here on a mac with safari and can test it easily.. in my case its working so come up with details – ggzone Jan 11 at 14:33
sorry i can't add a link - I have to maintain anonyimity of the company. Another way of phrasing it - does anyone know of rendering differences between safari on a Mac and safari on a PC (same browser version). If not - i shall delete / answer my own question – richardstelmach Jan 11 at 16:46
@richardstelmach Please edit your question to include snippets of the relevant HTML and CSS. You will get both more answers and answers of a higher quality with code samples. – dgvid Jan 11 at 18:35
@dgvid html: '<td class="someClass"><span>text here</span></td>'. CSS: 'td.someClass{cursor:pointer;}' – richardstelmach Jan 12 at 9:14
feedback

2 Answers

In the past I remember using:

cursor:hand;

...for Safari.

Not sure if it's necessary any more, or if I just stopped using it.

link|improve this answer
1  
This was required for IE5. – duri Jan 11 at 14:36
There we go, I knew it was for some browser, wasn't sure which one. Such is life. Thanks for the comment. – MetalFrog Jan 11 at 14:39
I found it worked fine in Safari on the PC but I actually noticed it whilst watching a usability video (and the user was using safari on a mac), someone suggested that this was maybe caused by the software or website they were using to record the user's actions on the screen. Is anyone aware of any rendering differences between Safari on a Mac to on a PC? – richardstelmach Jan 11 at 16:44
feedback

I've found that it may have likely been down to the software the user was using to record their screen as I noticed it when watching a usability testing video - the user was using Safari on a mac. The software may have replaced the cursor as a means of tracking/recording its movement. I have since tested it on a mac, using Safari and it works. Using: 'td.someClass{cursor:pointer;}'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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