SyntaxFix
Write A Post
Hire A Developer
Questions
a less-jquerish approach:
$('#mytable tr').each(function() { if (!this.rowIndex) return; // skip first row var customerId = this.cells[0].innerHTML; });
this can obviously be changed to work with not-the-first cells.