Table rows are pretty easy to work as all the td elements are contained within one tr, but how would you grab all the tds in a single column? Why, by using these selectors of course! $.fn.row = function(i) { return $('tr:nth-child('+(i+1)+') td', this); } $.fn.column = function(i) { return $('tr…
↧