How do you count how many characters are in a paragraph tag with jQuery/Javascript? For example in this sample it would be 3.
JavaScript
x
4
1
<div>
2
<p class="tag">Jam</p>
3
</div>
4
Are you able to select the characters with .length()
somehow?
Advertisement
Answer
This is what you want
JavaScript
1
2
1
$.trim($("p").text()).length;
2