how to set html value in jquery code example
Example 1: how to set html label value in jquery
$('#lblName').text('New Text');
Example 2: jquery set html of element
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});
$('#lblName').text('New Text');
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});