Hi I want to be able to count the number of displayed characters in a Div with javascript/jquery. For example
<div id=mydiv>
<p>This is my div!</p>
</div>
I want to get the number 15 since that's how many chars in the div including spaces.
Thanks!