Hi,
I am trying to change value of a <span> tag, through jquery and its not doing it for some reason. Below is the HTML code
<span id="lbltest">eee</span>
Javascript code is
<script type="text/javascript">
$(function () {
$("#lbltest").text("abcd");
});
</script>
I am expecting it should display abcd instead of eee.
Try with this code:
$("#lbltest").html("abcd");
Best regards,Martin PavlovInfragistics, Inc.