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

226
Visualizações
How can I change th attribute rowspan using js

I have this tag:

<th id="empty-span" class="empty-span" colspan="15" rowspan="5">

and after I click on a button I want to have

<th id="empty-span" class="empty-span" colspan="15" rowspan="6">

how can I do it using js?

about 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

You can do it simply by getting the element then changing the rowSpan proprety

document.getElementById("empty-span").rowSpan = "6";

Or with jquery :

$('#empty-span').attr('rowspan', '6');
about 4 years ago · Santiago Trujillo Relatório

0

Try this :

document.getElementById("empty-span").rowSpan = "6";

Or: with incremental :

var currentNode = document.getElementById("empty-span");
currentNode.rowSpan = parseInt(currentNode.rowSpan) + 1;
about 4 years ago · Santiago Trujillo Relatório

0

You can change the rowSpan using element.rowSpan.

To demonstrate, click on the first cell to change the rowSpan to 2;

function enlarge() {
  event.target.rowSpan = 2;
}
table, th, td {
    border: 1px solid;
}
<table>
    <tr>
        <td onclick='enlarge()'>Click me to enlarge!</td>
        <td>#1-1</td>
        <td>#1-2</td>
    </tr>
    <tr>
        <td>#2-1</td>
        <td>#2-2</td>
    </tr>
<table>

about 4 years ago · Santiago Trujillo 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