set text to label in jquery code example
Example 1: how to set text for label in jquery
BY LOVE
$("#lblCustomerName").text('LOVE SINGH');
Example 2: jquery change label content
$('#lblUserFullname').html(currentUser.Firstname+' '+currentUser.Lastname);