vote up 8 vote down star
4

Using jQuery, how would you find elements which have a particular style (eg: float: left), regardless of whether it's an inline style or one defined in a CSS file?

flag

67% accept rate

3 Answers

vote up 11 vote down check

Using the filter function:

$('*').filter(function() {
     return $(this).css('float') == 'left';
});

Replace '*' with the appropriate selectors for your case.

link|flag
Much better solution than mine I think. – Genericrich Jan 14 '09 at 6:23
Yeah, +1 good answer, but for sanitys and speeds sake one may want to reduce the search field to something less than '*' – Kent Fredric Jan 14 '09 at 6:52
Of course he should pass the selectors relevant for him :) – Eran Galperin Jan 14 '09 at 7:05
vote up -1 vote down

Well, I don't know if I would approach this this way. Why not just rename those elements with a consistent ID or class name, and select that?

If that's not an option, this should work:

this.getElementsByTagName('div').item(0).style.float = 'left';

I think.

link|flag
This will not work. Your code selects all divs, reduces selection to the first div, then sets its float to left. – yaauie Jan 14 '09 at 8:23
vote up 1 vote down

This is gonna be slow. Like REALLY slow. If you know you need to select all elements with a given CSS style, you will see much better performance by applying a single additional css rule to each element, and then selecting by that rule.

It's going to be MUCH faster and more readable to boot.

CSS:

.float-left {float:left}

Javascript:

$('.float-left');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.