Strip HTML tags from string


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function stripHtml(s) {
  2. return s.replace(/\\&/g, '&amp;').replace(/\\</g, '&lt;').replace(/\\>/g, '&gt;').replace(/\\t/g, '&nbsp;&nbsp;&nbsp;').replace(/\\n/g, '<br />');
  3. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.