Question : How to code TextArea with Bullets?
function Bulletcode(message, code_open, code_close, textarea_name)
{
var txt = prompt(message,”");
if(txt)
{
var txt = code_open + txt + code_close;
id = document.forms[0][textarea_name];
id.value += txt;
id.focus();
}
}
