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