Thursday, July 17, 2014

label value in Jquery

Label In Jquery
Many times we use get get the value of label :- $("#lblId").val();
But It doesn't work .
So best Solution is 
To Set the value in Label :- $("#lblId").innerHtml("your string");
To get the value use : $("#lblId").text();

No comments:

Post a Comment

Thanks for your valuable comments

Convert Html to Pdf in azure function and save in blob container

 In this post  I am going to create an azure function ( httpTrigger ) and send html content  which will be converted into PDF and save in bl...