is there a way to have the mouseover with a hand when you go over the column heading so its clear that you can click on the column heading to sort the table by that column
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, this is achievable using the cursor: pointer CSS property. It is possible to apply this property in the CSS file within the appropriate class, or directly with jQuery:
$(‘th’).css(‘cursor’, ‘pointer’);