jQuery 1.6 get elements where ID starts with code example
Example 1: jquery id that starts with
$('[id^=editDialog]')
Example 2: jquery id starts with
$("td[id^=" + value + "]")
$('[id^=editDialog]')
$("td[id^=" + value + "]")