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:
|
||
|
|
|
Now you can do:
if you mean truncating at the last word boundary of a string with 'more sophisticated' then this may be what you want:
now you can do:
|
|||
|
|
|
With a quick googling I found this... Can do? |
||
|
|
|
|
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. |
|||
|
|
|
|
Here's my solution, which has a few improvements over other suggestions:
It:
|
|||
|
|
|
|
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. |
||||
|
|
|
Just another method you can use for truncating large text strings
|
||
|
|