Skip to content

Instantly share code, notes, and snippets.

@kamirbarron
Forked from mindplay-dk/jquery.column.js
Created December 26, 2018 21:01
Show Gist options
  • Save kamirbarron/1f8345ff9c44076af1c58702c2b21c99 to your computer and use it in GitHub Desktop.
Save kamirbarron/1f8345ff9c44076af1c58702c2b21c99 to your computer and use it in GitHub Desktop.
jQuery: find all cells (td/th) in a column of a table
/**
* Find all cells (td/th) in the column of the current cell.
* (excluding rows with cells that span multiple columns.)
*/
(function($) {
$.fn.column = function() {
return $(this)
.filter('th, td')
.filter(':not([colspan])')
.closest('table')
.find('tr')
.filter(':not(:has([colspan]))')
.children(':nth-child(' + ($(this).index()+1) + ')');
}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment