How would you remove everything between all instances of brackets like in
var item = '<p>1. Get this <a title= "Static Review"> </a> more text </p>'
I've tried using the solution from How can I remove a character from a string using Javascript? with the global tag, formatted like : item = item.replace(/\/<.*>/, '')
, but that just outputs nothing.
Really lost here