Within my table, there is an [object HTMLInputElement] and I am trying to change the id of this element. However, the usual method I am using doesn't seem to be working:
`function BindFunctions() {
$('table[id*="tbl_main"]').tablesorter();
$('table[id*="tbl_main"]').bind("sortEnd",function() {
var table = document.getElementById('<%=tbl_main.ClientID%>');
for (var i = 0, row; row = table.rows[i]; i++) {
var e = row.cells[0].firstChild;
e.id= '5';
}
});
};`
Is there anyone who can provide assistance with this issue?