Using Javascript within an HTML page, is it possible to count the instances of a given text value in the cells for a given column? In other words, if one of the columns contains cell values of either "1" or "2", can I generate a "total" count of how many "2" values exist in that column?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
EDIT: Regarding your comment: Example: http://jsfiddle.net/cGS99/
or if by the column with "...", you meant the last column, change this:
to this:
Example: http://jsfiddle.net/cGS99/1/ doh!
This will work as long as the content doesn't have possible sub-strings of "2", like "12". |
|||||||||||||||||||
|
|
Sounds like you are looking for the contains selector. fiddle.
Use length
Output:
|
|||
|
|
|
@patrick_dw pointed me in the direction I needed (thanks!). Here's the result that works for me...
|
|||
|
|