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)+"...";
}
|
Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one:
| |||
feedback
|
Now you can do:
if with 'more sophisticated' you mean: truncating at the last word boundary of a string, then this may be what you want:
now you can do:
| ||||
feedback
|
|
Note that this only needs to be done for Firefox. All other browsers support a CSS solution:
The irony is I got that code snippet from Mozilla MDC. | |||||||||||||
feedback
|
|
Here's my solution, which has a few improvements over other suggestions:
It:
| ||||
|
feedback
|
|
Most modern Javascript frameworks (JQuery, Prototype, etc...) have a utility function tacked on to String that handles this. Here's an example in Prototype:
This seems like one of those functions you want someone else to deal with/maintain. I'd let the framework handle it, rather than writing more code. | ||||
|
feedback
|
|
Firefox now supports a CSS solution as well.
| |||
|
feedback
|