If I want to select every image which it's alt is Home for example, I can do something like this:

$("img[alt='Home']")

But how can I select every elements which their width CSS property is 750px for example in a single selector?

EDIT: If there is no such selector, is there any plugin, or any plans to do it in the next jQuery versions?

link|improve this question

No such selector – Josh Stodola Oct 26 '09 at 14:27
feedback

3 Answers

up vote 10 down vote accepted
var $images = $("img").filter(function() {
    return $(this).css('width') == '750px';
});

EDIT: There is no plugin I am aware of, or any plans to include such specific functionality. You can easily pluginify it yourself, such as (untested):

$.fn.filterByWidth = function(width) {
    var $images = $("img").filter(function() {
        return $(this).css('width') == width;
    });
    return $images;
};

Usage:

$images = $('#div img').filterByWidth('750px');
$images = $('#div img').filterByWidth('50%');
...etc...
link|improve this answer
1  
Isn't this possible with a single simple selector? – Alon Gubkin Oct 26 '09 at 14:26
Should use width() instead – Josh Stodola Oct 26 '09 at 14:27
@Alon - I seriously doubt it – karim79 Oct 26 '09 at 14:27
3  
@josh question specifically asked for css declared width only – cobbal Oct 26 '09 at 14:29
Ahhh, good call. Sorry about that. – Josh Stodola Oct 26 '09 at 14:31
show 3 more comments
feedback

Not necessarily a great idea, but you could add a new Sizzle selector for it :

$.expr[':'].width = function(elem, pos, match) {
    return $(elem).width() == parseInt(match[3]);
}

which you could then use like so:

$('div:width(970)')

That's going to be horrifically slow, though, so you'd want to narrow down on the number of elements you're comparing with something like :

$('#navbar>div:width(970)')

to only select those divs that are direct descendants of the navbar, which also have a width of 970px.

link|improve this answer
1  
Is $.expr the correct API in jQuery? I just used jQuery.find.selectors.filters because that's where Sizzle is exposed to the global scope. – eyelidlessness Oct 26 '09 at 17:02
Removed my answer as it more or less duplicates yours. Still unclear about the API though. – eyelidlessness Oct 26 '09 at 17:04
Ahh. They evaluate to the same object, but jQuery.find.selectors.filters is much less silly looking. Thanks for pointing that out – jdelStrother Oct 26 '09 at 18:32
feedback

I have no idea if this will work, but...:

${"[style*=width: 750px]")

However, you might be better off using a class to control the width, then modifying the width of all instances of that class... or changing to a different class:

$(".classname").removeClass("classname").addClass("otherclassname");
link|improve this answer
@R. Bemrose - I thought that would work when I saw your post, but I tried it in several scenarios with no luck whatsoever. I believe you can do something similar in Prototype, it's too bad that you can't in jQuery. – karim79 Oct 26 '09 at 14:47
feedback

Your Answer

 
or
required, but never shown

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