One friend asked me this and as my knowledge on RegExp is not so good yet here I am.
How can exclude the HTML tags from this string?
rena&l
this is a quick way to do it:
var content = "renatogalvao"; content = content.replace(/<[^>]*>/g,'');