I have the following HTML:
<div class="unidadesTotal">
<div class="unidades">tituloSYS</div>
<div style="display:none" class="unidadesConteudo margin-top-25">
<div class="margin-left-10"> <span>descricaoSYS</span>
</div>
<div class="atendimento unidadesAtendimento margin-top-15 f-left">horário de atendimento</div> <a href="codigoSYS" target="_blank"><div class="unidadesAtendimento unidadesLocalizacao margin-top-15 margin-left-10 f-left">ver localização</div></a>
</div>
</div>
The unidadesTotal
is a button, when I click on it the unidadesConteudo
stops being display: none and becomes display: block , so perfect , here's my Jquery:
$('.unidadesTotal').click(function () {
$(this).parent().find('.unidades').addClass('unidadesHover');
$(this).parent().find('.unidadesConteudo').slideDown();
});
How would I make an IF for the button to give a slideUp ?