<textarea>
Test string<br>1<span>2</span>
</textarea>
Регуляркой можно
function clean(txt){
return out = txt.replace(/(<([^>]+)>)/ig,'');
}
document.querySelector('textarea').value = clean(document.querySelector('textarea').value)
function clean(txt){
return out = txt.replace(/(<([^>]+)>)/ig,'');
}
document.querySelector('#brief').value = clean(document.querySelector('#brief').value)
Вадим Круглов, можно попробовать поменять регулярку
но скорей всего символы отрендерется браузером до того как будут убраны
function clean(txt){
return out = txt.replace(/(<([^>]+)>)(&.+;){0,}/ig,'');
}
document.querySelector('#brief').value = clean(document.querySelector('#brief').value)