I try to change label text but nothing works
function changeText(lblTxt) {
var lblAjaxUpdate = $(\"#\" + Key).find(\"[class=\'label\']\");//finds the
A basic use with
$('label').text();
is shown here http://jsfiddle.net/aCQg9/
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;
in your case:
lblAjaxUpdate.text(lblTxt)
or
lblAjaxUpdate.get(0).InnerText = lblTxt