jquery selector id starts with and ends with code example
Example 1: jquery id starts with
$("td[id^=" + value + "]")
Example 2: jquery selector id that starts with
// Select id that starts with "GFG"
$( "[id^='GFG']" ).css("background-color", "pink");