Setting a max character length??
I wonder if someone could tell me the best way to set a maximum character length which I will need to be able to change, depending on the size of desktop/tablet/mobile etc
<p>Setting a max character length???????????????????????????????????????????? </p>
I have seen a few things on the web but not sure how to add them
------
Note: just change #your-div-id and put your div ID.
var myDiv = $('#your-div-id');
myDiv.text(myDiv.text().substring(0,300))
-----
Thanks
Tim
