header cursor
header cursor
when I put the cursor over one of the headers or over a row (which is clickable) the cursor chnages to a bar and not a hand. Any ideas on why this happens and how to fix it? Thought it might be IE9, but happens in Safari as well. The click itself works correctly. Thanks.
This discussion has been closed.
Replies
[code]
table#example thead th {
cursor: pointer;
/* ... */
}
[/code]
see options at http://www.w3schools.com/cssref/pr_class_cursor.asp
[code]
table#example thead th {
cursor: pointer;
*cursor: hand;
}
[/code]
which is what I've done in the DataTables default CSS.
Regards,
Allan
thanks
Russell
Regards,
Allan