how to set the cursor: hand for jquery data table

css, datatables, html, javascript

Solution

This is the answer , simple :

<table class="display" id="table" style="cursor:pointer" width="100%"> </table>

Problem

I need to set the cursor: hand for particular jquery data table row selection .I try this code but not working. ``` $(document).ready(function () { $("#table tr").css('cursor', 'hand'); }); ```

Original source