set value for label in jquery code example
Example 1: how to set text for label in jquery
BY LOVE
$("#lblCustomerName").text('LOVE SINGH');
Example 2: set label text in jquery
$("#labelName").text($value);
Example 3: how to set html label value in jquery
$('#lblName').text('New Text');