find id like jquery code example
Example 1: jquery id that starts with
$('[id^=editDialog]')
Example 2: jquery id starts with
$("td[id^=" + value + "]")
Example 3: get elements by id like jquery
$('div[id^="list_"]')
$('[id^=editDialog]')
$("td[id^=" + value + "]")
$('div[id^="list_"]')