I want to prevent the formatting of text from a website and for this I need to remove all tags (except <br>
) inside a text box if someone thinks of pasting some content from some other site
An example to not be confused:
var text = "<b>Olá</b>, Usuário<br><i>Seja bem vindo</i>!"
removeHTML(text) = "Olá, Usuário<br>Seja bem vindo!"