1
2// change label value
3$("#labelName").text($value);
4
5// display label html
6$("#labelName").text('<font class="red"> * </font> label');
7// reset combobox value
8var html_options = "<option value=''>" + $('#eform_id').find("option").first().text() + "</option>";
9$('#eform_id').html(html_options);
10$('#eform_id').selectpicker('refresh');
11
12
1// change label valie
2$("#labelName").text($val);
3
4// reset combobox value
5var html_options = "<option value=''>" + $('#eform_id').find("option").first().text() + "</option>";
6$('#eform_id').html(html_options);
7$('#eform_id').selectpicker('refresh');