I am trying to add td after the end of the existing td. Below is the following code (I do it in jqgrid).
$("#list_toppager_center tr:first td:eq(7)").append("<td class='ui-paging-info'>Col/td>");
I see that this column is being added, but it is being added under the column that I am trying to add, instead of adding side by side. Is the above solution the right way?
source
share