vote up 3 vote down star

When using the 'this' keyword in jQuery, what is the syntax for adding basic filters.

For example:

$(this):contains('foo')

$(this):visible OR $(this:visible)
flag

75% accept rate

3 Answers

vote up 1 vote down check

For Searching for items within this:

$(':visible, any-selector', this)
$(this).find(':visible, any-selector')

if you want a true or false return:

if($(this).is(':visible, any-selector')){
    alert('this is visible, or matches "any-selector");
    }
else{
    alert('this is hidden, or doesn't match "any-selector");
    }
link|flag
vote up 1 vote down

That's what the filter() method is for:

$(this).filter(":contains(foo)");
$(this).filter(":visible")

According to the docs:

Removes all elements from the set of matched elements that do not match the specified expression(s).

link|flag
Yes, that will filter your matched elements by your selector, but our matched elements = [this]. You've only selected "this". So if this doesn't match your selector you would have to do a .size() to tell if it matched or not... find looks inside the selected elements, and is returns a logical true / false responce of the selector on the set. – Lathan Aug 27 at 20:57
vote up 0 vote down

use this syntax: jQuery( expression, [context] )

$(":contains(foo)", this)
$(":visible", this)
$("any-selector", this)
link|flag
that's not correct. It will only select sub-elements of 'this' – Philippe Leybaert Jun 8 at 18:41
the jQuery( expression, context ) is the same as jQuery(context).find(expression). – Lathan Aug 27 at 20:57

Your Answer

Get an OpenID
or
never shown

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