How To Change Label Text?
I try to change label text but nothing works function changeText(lblTxt) { var lblAjaxUpdate = $('#' + Key).find('[class='label']');//finds the label no problem
Solution 1:
You need .text()
lblAjaxUpdate.text(lblTxt);
You can also use InnerText on DOM object but not on jQuery object, use indexer or .get() to convert the jQuery object to DOM
lblAjaxUpdate[0].InnerText = lblTxt;
lblAjaxUpdate[0].InnerHtml = lblTxt;
OR
lblAjaxUpdate[0].get(0).InnerText = lblTxt;
lblAjaxUpdate[0]..get(0).InnerHtml = lblTxt;
Solution 2:
in your case:
lblAjaxUpdate.text(lblTxt)
or
lblAjaxUpdate.get(0).InnerText = lblTxt
Post a Comment for "How To Change Label Text?"