How to change the cursor with DataTable 1.10
How to change the cursor with DataTable 1.10
![dlbarron](https://secure.gravatar.com/avatar/fa0d053d49fc906ee69d4225783a691e/?default=https%3A%2F%2Fvanillicon.com%2Ffa0d053d49fc906ee69d4225783a691e_200.png&rating=g&size=120)
I upgraded my jquery and DataTable packages to the latest and now some of the functionality I have been using is no longer working. For example I want to be able to change the cursor to a pointer when over any cell. For that I have always uses this code:
$('#forumtable tbody tr').hover(function() {
$(this).css('cursor', 'pointer');
}, function() {
$(this).css('cursor', 'auto');
});
That is no longer working.
Also the code I have used in the past to make rows clickable used .live() and that is not supported in the new version of jquery. I tried replacing it with .do and it quit working all together.
This seems like some pretty basic stuff. Can anyone suggest where I'm going wrong?