jquery id startswith code example
Example 1: jquery selector attribute value starts with
$( "input[name^='news']" ) //name starts with news
Example 2: jquery id starts with
$("td[id^=" + value + "]")
$( "input[name^='news']" ) //name starts with news
$("td[id^=" + value + "]")