vote up 4 vote down star
1

Is there a selector that I can query for elements with an ID that ends with a given string?

Say I have a element with an id of "ctl00$ContentBody$txtTitle". How can I get this by passing just "txtTitle"?

flag

78% accept rate

4 Answers

vote up 16 vote down check

$("element[id$='txtTitle']")

More information available

link|flag
1  
I would look for it ending with '$txtTitle'. It isn't as much of a risk with the 'txt' prefix, but if you selector is 'NameTextBox', it would match 'NameTextBox', 'FirstNameTextBox', LastNameTextBox', etc. – Mark Mar 20 at 14:57
vote up 6 vote down

Try

$("element[id$='txtTitle']");

edit: 4 seconds late :P

link|flag
vote up 0 vote down
$('element[id$=txtTitle]')

It's not strictly necessary to quote the text fragment you are matching against

link|flag
Thanks for pointing that out. – Josh Stodola Mar 20 at 15:09
vote up 1 vote down

It's safer to add the underscore or $ to the term you're searching for so it's less likely to match other elements which end in the same ID:

$("element[id$=_txtTitle]")

(Note, you're suggesting your IDs tend to have $ signs in them, but I think .NET 2 now tends to use underscores in the ID instead, so my example uses an underscore).

link|flag
Yes you are right. ID property uses underscore. Name property uses dollar sign. – Josh Stodola May 14 at 14:36

Your Answer

Get an OpenID
or

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