vote up 0 vote down star

I'm trying to find all elements on a page whose element id contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly appreciated

flag

40% accept rate

4 Answers

vote up 0 vote down

thank u both it perfectly i'm looking for too..thanks a lot

link|flag
vote up 1 vote down

Thanks to both of you. This worked perfectly for me.

$("input[type='text'][id*=" + strID + "]:visible").each(function() {
    this.value=strVal;
});
link|flag
vote up 0 vote down

This selects all DIVs with an ID containing 'foo' and that are visible

$("div:visible[id*='foo']");
link|flag
If im searching for textbox elements rather than divs, is it simply $("input:visible[id*='foo']"); ? – unknown (google) Jul 30 at 13:58
it would be $("input[type='textbox'][id*='foo']:visible") – karim79 Jul 30 at 14:00
@port-zero - the single quotes around 'foo' are not necessary – karim79 Jul 30 at 14:00
vote up 3 vote down
$('*[id*=mytext]:visible').each(function() {
    $(this).doStuff();
});

Note the asterisk '*' at the beginning of the selector matches all elements.

See attributeContains:

http://docs.jquery.com/Selectors/attributeContains#attributevalue

Also see the :hidden and :visible filters:

http://docs.jquery.com/Selectors/hidden

http://docs.jquery.com/Selectors/visible

link|flag

Your Answer

Get an OpenID
or

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