Can someone tell me if their is a way to limit text within div classes.
example
<div class="mon">December</div>
<div class="mon">November</div>
<div class="mon">October</div>
$('.mon').hide().text();
var month = $('.mon').text().substr(0,3);
$('.mon').append(month).show();
alert(month);
trying to output
Dec Nov Oct
Any help?