Is it possible to use jQuery to count how many characters are in, for example, an , and if the amount is greater than XX characters, apply a class to
You could do something like this:
// The number of characters var XX = 100; $('li').filter(function() { return $(this).text().length > XX; }).addClass('someClass');