jquery selector starts with code example
Example 1: jquery id that starts with
$('[id^=editDialog]')
Example 2: jquery selector attribute value starts with
$( "input[name^='news']" ) //name starts with news
Example 3: jquery selector id that starts with
// Select id that starts with "GFG"
$( "[id^='GFG']" ).css("background-color", "pink");