I'm trying to write HTML symbols (like °
) in a TSPAN element with jQuery.
In a simple SPAN it's easy:
$('#span_id').html('°');
With the TSPAN this way doesn't work, if I use
$('#tspan_id').html('°');
nothing is printed out.
With
$('#tspan_id').text('°');
°
is printed instead of °
(obviously)
How can I do?
You can use the
.append()
function for thisFIDDLE