RsD0p9BK
12/27/2016 - 4:42 AM

jquery__range_of_columns.js

// Selecting specific range of columns with jquery

$('#table tr').each(function() {
     // do code per row
     var $columnRange = $(this).find('td').splice(1,4);
});

// http://stackoverflow.com/questions/2898876/selecting-specific-range-of-columns-with-jquery