Tagged Questions

7
votes
5answers
6k views

smart way to shorten long strings with javascript

Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one: if(string.length > 25) { string = string.substring(0,24)+"..."; }
3
votes
5answers
4k views

jQuery: shorten string length to fit a set width

I have a table, and in each cell I want to place strings, but they are much wider than the cell width. To prevent line break, I would like to shorten the strings to fit the cell, and append '...' at ...
2
votes
5answers
411 views

javascript/php - shorten string to fit into a certain # of lines

I have a string that must fit into a box, and must be at most 3 lines long. To shorten it, I plan to truncate it and end it with '...'. I could shorten it to a certain # of characters but if i make it ...
1
vote
5answers
135 views

Shorten jquery script

Sorry for asking, but i am really newbie in jquery. $(".productTopMenu").click(function() { $("#breadcrumbs").html("Home / <strong>Product</strong>"); }); ...
1
vote
3answers
107 views

Is it possible to shorten text in javascript to a php get request?

I have a very specific situation where a javascript page creates a new window with a meta-refresh in it which goes to a php page which has 1 variable with everything that the javascript page has put ...