How do I get a long text string (like a querystring) to display a maximum of 10 characters, using JQuery?
Sorry guys I'm a novice at JavaScript & JQuery :S
Any help would be greatly appreciated.
|
How do I get a long text string (like a querystring) to display a maximum of 10 characters, using JQuery? Sorry guys I'm a novice at JavaScript & JQuery :S
| |||||||||
feedback
|
|
If I understand correctly you want to limit a string to 10 characters?
Something like that? | |||||||||||||||
feedback
|
|
html
javascript (on doc ready)
If you have multiple words in the text, and want each to be limited to at most 10 chars, you could do:
| |||||||||||
feedback
|
|
which would rip out the http:// or https:// and print up to 10 charaters of www.example.com | |||
|
feedback
|
|
What you should also do when you truncate the string to ten characters is add the actual html ellipses entity: | |||
|
feedback
|
|
And here's a jQuery example: HTML text field:
jQuery code to limit its size:
As an example, you could use the jQuery code above to restrict the user from entering more than 10 characters while he's typing; the following code snippet does exactly this:
Update: The above code snippet was only used to show an example usage. The following code snippet will handle you issue with the DIV element:
Please note that I'm using | |||||||||||
feedback
|