http://stackoverflow.com/questions/822452/strip-html-from-text-javascript
function strip(html)
{
var tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || "";
}
http://stackoverflow.com/questions/822452/strip-html-from-text-javascript
function strip(html)
{
var tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || "";
}