Hi can you give me a javascript function to replace spaces with
i googled and can't get them to work. I'm currently using this function:
function escapeHTMLEncode(str)
{
var div = document.createElement('div');
var text = document.createTextNode(str);
div.appendChild(text);
return div.innerHTML;
}