For a js click function to View and Hide some comments, i use this unicode
▼ and ▲ (Arrow up and arrow down)
$('.toggle-<?php echo $comment_id; ?>').click(function(){
$(this).text($(this).text() == 'Hide replies ▲' ? 'View replies ▼' : 'Hide replies ▲');
But it shows me literally the code instead of the arrow.
So how i need to use the code in the script above?
"View replies ▼"?$(this).text() == 'View replies ▼'in the code