“Eliminar texto en div jQuery zqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq” Código de respuesta

Eliminar texto en div jQuery zqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq

$(function() {
  $("#to-clean, #to-clean *")                  // selects the element and all element nodes inside it
    .contents()                                // selects all child nodes including tags, comments and text
    .filter(function() {
      return this.nodeType === Node.TEXT_NODE; // filter text nodes
    }).remove();                               // boom!
});
Selim Soufargi

Eliminar texto en div jQuery zqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq

$(function() {
  $("#to-clean, #to-clean *")                  // selects the element and all element nodes inside it
    .contents()                                // selects all child nodes including tags, comments and text
    .filter(function() {
      return this.nodeType === Node.TEXT_NODE; // filter text nodes
    }).remove();                               // boom!
});
Selim Soufargi

Respuestas similares a “Eliminar texto en div jQuery zqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq”

Preguntas similares a “Eliminar texto en div jQuery zqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq”

Más respuestas relacionadas con “Eliminar texto en div jQuery zqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código