I have issue wuth Firefox not displaying style "text-decoration: line-through".
I am using jqGrid for displaying list of medications. If medication is not active, it has to be crossed. In my afterInsertRow event I do this:
$('#' + rowid).css({ 'text-decoration': 'line-through', 'color': 'red' })
It works fine for IE and Chrome, but Firefox displays only red text without crossing line.
When I look into firebug output, I can see that <tr>
element has style definition including text-decoration, but it is simply not displaying the way I need.