 |
html - change text of label in jquery - Stack Overflow
I was having the same problem because i was using $("#LabelID").val("some value"); I learned that you can either use the provisional jquery method to clear it first then append: $("#LabelID").empty(); $("#LabelID").append("some Text"); Or conventionaly, y
stackoverflow.com |
 |