-
-
Save kamirbarron/1f8345ff9c44076af1c58702c2b21c99 to your computer and use it in GitHub Desktop.
jQuery: find all cells (td/th) in a column of a table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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