1
I made a li that when clicked, should show the content present within a div that’s like visibility:Hidden. As I’m calling the JS.
$(".buttonShowContentSinopse").click(function() {
$(".showContentSinopse").show();
});
.showContentSinopse {
visibility: hidden;
}
<div class="boxContent">
<ul>
<li class="buttonShowContentSinopse active">Sinopse</li>
<li>Ficha Ténica</li>
<li>Imagens</li>
<li>Trailer</li>
</ul>
<div class="showContentSinopse grid_475 float-left padding-20 bgYellow">
<p>Num futuro próximo, o combustível que alimenta os motores dos carros é também motivo para crimes perpretados por violentas gangues. Max é um jovem policial e junto com seus companheiros patrulha as estradas a fim de impedir a ação daqueles que insistem
em perturbar a paz. A morte de um membro pelas mãos de Max dá início a uma série de crimes cruéis cometidos contra sua família e o melhor amigo. Assim, Max só tem uma escolha: vingança.</p>
</div>
</div>
Are you using . Hide() ?? If you are going to appear use the . show(), you must have reversed the roles .
– Ricardo Lucas
I mistook it when I put the code here. But, with show also doesn’t work.
– Felipe Viero Goulart
Face in your CSS switch, put display : None instead of visibility : Hidden
– Ricardo Lucas
This error appears in the console: Referenceerror: $ is not defined
– Felipe Viero Goulart