Datatable Fixed Column cell data style change on click

Datatable Fixed Column cell data style change on click

KumaresanKumaresan Posts: 1Questions: 1Answers: 0

Desc: I am using Datatable 1.7.5 and Jquery 1.4.4

I am trying to strike out the datatable 3rd column data which is fixed one. In onclick event. Its works fine in chrome browser and not in IE 11
In checkbox onclick event I am suing the below code

var labelID = 3rd columns labeid;
$('.FixedColumns_Cloned #'+labelID).css('text-decoration','line-through');

OR

labelID.innerHTML = "<STRIKE>" + res[0]+ "</LABEL>" + "</STRIKE>";

both cases works fine in chrome

but IE 11 not working.

let me know any suggestion.

This discussion has been closed.