Find all the elements with an id
The answer to the question is $(“[id$=’txtTitle’]”), as Mark Hurd answered, but for those who, like me, want to find all the elements with an id which starts with a given string (for example txtTitle), try this (doc) :
$(“[id^=’txtTitle’]”)
If you want to select elements which id contains a given string (doc) :
$(“[id*=’txtTitle’]”)
If you want to select elements which id is not a given string (doc) :
$(“[id!=’myValue’]”)
(it also matches the elements that don’t have the specified attribute)
If you want to select elements which id contains a given word, delimited by spaces (doc) :
$(“[id~=’myValue’]”)
If you want to select elements which id is equal to a given string or starting with that string followed by a hyphen (doc) :
$(“[id|=’myValue’]”)