I have this html div tag defined:
<div style="height:100px; width:100px" class="total-title">
first text
</div>
I have jquery code to change its value:
$('div.total-title').html('test');
But this does not change the content of the div.
I have this html div tag defined:
<div style="height:100px; width:100px" class="total-title">
first text
</div>
I have jquery code to change its value:
$('div.total-title').html('test');
But this does not change the content of the div.