/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function stripHtml(s) { return s.replace(/\\&/g, '&').replace(/\\</g, '<').replace(/\\>/g, '>').replace(/\\t/g, ' ').replace(/\\n/g, '<br />'); }