What's the fastest way possible to get a string like "fade" from the classes in the element below?
<div class="MyElement fx-fade"> ... </div>
|
What's the fastest way possible to get a string like "fade" from the classes in the element below?
|
|||
|
|
|||
|
|
|
If you wanted to look for something that ended in 'fade' you would use:
And for elements with a class that started with 'fade' you would use:
And to get elements that contain 'fade' you would use (this would be quicker than going through the class names string)
The "*" gets all elements so you could replace this with the element you wanted. If you want elements that has a classname that starts with 'fx-' you would do:
The array used in the for loop would have all the elements with the classnames like 'fx-'. Rather than than the for loop checking the elements for the correct class name. More information at jquery.com |
||||
|
|
|
Check out JQuery selector regular expressions. It might be exactly what you need! :) |
|||||
|
|
I'd probably go with something like:
|
|||||||
|