Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

limpar html string js

tring.prototype.stripHTML = function() {return this.replace(/<.*?>/g, '');}

// Exemplo de utilização
var txt = "<p>este é <u>apenas</u> um <b>teste</b> para a função <i>stripHTML</i>.</p>";
txt = txt.stripHTML();
 
PREVIOUS NEXT
Tagged: #limpar #html #string #js
ADD COMMENT
Topic
Name
8+7 =