<script> var str = 'тут много текста.....' if(str.length>15) { var new_str = str.substr(0,12)+'...' } alert(new_str) </script>