Html code:
<div id="block-id-45"></div>
How i can get number "45" of string (JQuery)?
Thanks.
|
Html code:
How i can get number "45" of string (JQuery)? Thanks. |
|||
|
To return the number at the end of an
The above will return The way the above works is that you retrieve the id of the element using You can use this function to retrieve the numbers from the end of all divs with an id that starts with Practical usage:
jsFiddle example |
||||
|
|
|
You don't need (or particularly want) jQuery for this (it's very useful for lots of other things, just not particularly for this). Straight JavaScript and DOM:
Live example: http://jsbin.com/osozu If you're already using jQuery, you can replace the first line with:
...but there's little if any reason to. |
|||
|
|
|
Using Jquery ...simply
For all block-id-##.... you can use mask pattern from Peter's answer
|
|||
|
|
block-id-. – Peter Ajtai Sep 15 '10 at 23:05