JQuery -ID, die mit beginnt mit
$('[id^=editDialog]')
Debug Crazy Duck
$('[id^=editDialog]')
$( "input[name^='news']" ) //name starts with news
// Select id that starts with "GFG"
$( "[id^='GFG']" ).css("background-color", "pink");
$("td[id^=" + value + "]")
$("[id^='txtTitle']")