JQuery html function on a td
- by Abs
Hello all,
I am trying to place some html within a td that has an id but this doesn't seem to work. Can JQuery not put html in a td by using its id as a selector??
I do this:
$('#total_match').html("<b>Test</b>");
Here is the td:
<td id="total_match"></td>
No errors occur and nothing appears in the TD - I view the source to confirm.
I appreciate any help.