Using jQuery, how to select all elements where the attribute idends with some string?
id
Here the end of the attribute is with a selector ( [attr$=value]) , for example:
[attr$=value]
$("[id$=something]")