Change cursor to hand when mouse goes over a row in table

You can do this with CSS actually.

.sortable tr {
    cursor: pointer;
}

Leave a Comment