jquery mobile table reflow mode, heading text color issue -


i created table reflow mode in jquery mobile. need color heading text. heading text color works fine when not in reflow mode. when in reflow mode, heading text color reverts default color.

here code:

$("#mytable").append( '<thead>' + '<tr>' + '<th style="color:#2554c7">taxing entity</th>' + '<th style="color:#2554c7">tax rate</th>' + '<th style="color:#2554c7">homestead exemption</th>' + '</tr>' + '</thead>' + '<tbody>' + '<tr>' + '<th>city of allen</th>' + '<td>0.5530</td>' + '<td>n</td>' + '</tr>' + '<tr>' + '<th>city of arlington</th>' + '<td>0.6480</td>' + '<td>y</td>' + '</tr>' + '<tr>' + '</tbody>' );  $("#mytable").table( "refresh" ); 

try this

style="color:#2554c7!important" 

Comments