whosonfirst / whosonfirst-www

www.whosonfirst.org – it's a website.
https://www.whosonfirst.org/
5 stars 8 forks source link

Add dynamic word count to /blog #28

Closed thisisaaronland closed 6 years ago

thisisaaronland commented 6 years ago
var wc = 0; var t = document.getElementsByClassName("whosonfirst-dynamically-generated-post"); var l = t.length; for (var i =0; i < l; i++) { var el = t[i]; var c = parseInt(el.getAttribute("data-word-count")); if (c) { wc += c } }; wc

55984