Trying to add the text "• " to a text area, but it will just print the symbol. Is there a way you can print the string itself?
Code:
function add(myValue) { //IE support if (document.selection) { desc.focus(); sel = document.selection.createRange(); sel.text = myValue; }
Code:
...onclick="add('• ')"
Comment