I’m using this code:
<script>
$(document).ready(function ()
{
$.getJSON("http://twitter.com/statuses/user_timeline/USERNAME.json?callback=?", function(data) {
$(".show_tweet").html(data[0].text);
});
});
</script>
<div class='show_tweet'></div>
to display the latest tweet on my website, however I wish to limit the number of characters this displays to let’s say 75 chars. How do I do this?
Thanks for the replies, Markus
You mean this