// 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