up vote 18 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

35% accept rate
possible duplicate of JQuery selector regular expressions – Robert MacLean Aug 31 '11 at 9:39
feedback

3 Answers

up vote 35 down vote accepted
$('*[id*=mytext]:visible').each(function() {
    $(this).doStuff();
});

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

See the Attribute Contains Selectors, as well as the :visible and :hidden selectors.

link|improve this answer
feedback

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

$("div:visible[id*='foo']");
link|improve this answer
If im searching for textbox elements rather than divs, is it simply $("input:visible[id*='foo']"); ? – user48408 Jul 30 '09 at 13:58
it would be $("input[type='textbox'][id*='foo']:visible") – karim79 Jul 30 '09 at 14:00
@port-zero - the single quotes around 'foo' are not necessary – karim79 Jul 30 '09 at 14:00
feedback

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

$("input[type='text'][id*=" + strID + "]:visible").each(function() {
    this.value=strVal;
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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