Change cursor to hand when mouse goes over a row in table
Add cursor: pointer
to your css.
I've searched bootstrap styles a bit and found this:
[role=button]{cursor:pointer}
So I assume you can get what you want with:
<span role="button">hi</span>
The easiest way I've found is to add
style="cursor: pointer;"
to your tags.
You can do this with CSS actually.
.sortable tr {
cursor: pointer;
}