In my Ajax success function I'm trying to dynamically check a radiobutton.
success: function (response) {
var equipmentInfo = JSON.parse(response.d);
$('#<%=' + equipmentInfo.InventoryType + '.ClientID%>').prop("Checked",true);
}
but I can't figure out how to escape the second line so that it works.