I have a list item generated via wordpress. Each list item has a class for example cat-item-14.
I need to manipulate this class only to show the number so to remove 'cat-item-' and just leave the class as '14'
Any pointers appreciated.
|
|
I'd rather extract the number and then append it to the attribute, instead of erasing all the other classes, because it could interfere with wordpress plugins that actually use the original classes:
|
||||
|
|
|
Try something like this:
Be aware though that it's not good practice to have a class starting with a numeric character. |
||||
|
|
What has Tom suggested you to do will does the trick. But.. Numbers are not allowed to be first letter of class or ID name... So... I would add underscore character to the class name...
|
|||