I am trying to use jquery on an Asp.net control. In asp.net id get generated from server. so I am trying to write a selector to use jquery.
$(document).ready(function() {
$("#ctl00$cphBody$fv$txtDescription").val('blah');
});
I need if the id contains 'txtDescription', I need to change the value of that textbox. Please suggest a selector for that