javascript - how to set the cursor: hand for jquery data table -
i need set cursor: hand particular jquery data table row selection .i try code not working.
$(document).ready(function () { $("#table tr").css('cursor', 'hand'); });
this answer , simple :
<table class="display" id="table" style="cursor:pointer" width="100%"> </table>
Comments
Post a Comment