jquery change label value 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');
Example 3: jquery change label content
$('#lblUserFullname').html(currentUser.Firstname+' '+currentUser.Lastname);