Currently my cursor is displaying as an arrow when hovered. How to change the cursor to a pointer when hovered for both icons as in the image below?
The code for css: style='cursor:pointer'
in my span tag is not working.
$("#actionTable").DataTable({
columns: [{
"data": "filename",
"className": "text-center",
render: function(data) {
return "<span title='view' onclick='view_file("" + data + "")'><img src='images/view_file.png' style='cursor:pointer'></span><span title='delete' onclick='delete_file("" + data + "")'><img src='images/bin.png' style='cursor:pointer'></span>";
}
}],
});