I found a regular expression that will strip my string of every html tag...
code:
var stripped = htmlStr.replace(/(<([^>]+)>)/ig,"");
Well, I also want it to strip every thing between parentheses, square brackets, and replace " " with a space.
It would be really cool if you could explain how to do this as well, because the stuff in the above code after "replace" confuses me. I have no idea how that's working.