Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

158
Visualizações
how to remove style attribute in html text with js?

I need to remove all properties that may be in the style attribute, but at the same time leave only the Width property.

<div class="item" style="font-size: 16px; width: 100px">
  <div class="sub-item" style="width: 100px">text</div>
  <div class="delete-item" style="border: 1 solid;">remove</div>
</div>
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can use getComputedStyle() along with removeAttribute()

document.querySelectorAll('div').forEach(div=>{
//get the width
let widthDiv = getComputedStyle(div).width;
// ✅ Remove all Styles from Element
div.removeAttribute('style');
// ✅ Set specific style of an Element
div.style.width = widthDiv;
})
<div class="item" style="font-size: 16px; width: 100px">
  <div class="sub-item" style="width: 100px">text</div>
  <div class="delete-item" style="border: 1 solid;">remove</div>
</div>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda