So I have some HTML.
<td class="qDescription">
<div>
<div id="questionTitle">% of users who logged in per day</div>
<div id="timeRangeExt"> 05 Mar 2015 - 11 Mar 2015</div>
<div class="compareToLabel"> (26 Feb 2015 - 04 Mar 2015)</div>
</div>
</td>
I'm trying to change the CSS property of #timeRangeExt, so I have the following jQuery:
$("#timeRangeExt").html("TESTING");
However, it doesn't work. I'm really at a loss here. I've done this 1000 times before, but this time it just won't select.
$(function() { $("#timeRangeExt").html("TESTING"); })?