I have a selectClick div and would like it when I clicked on it, open an option below. The way I'm doing is not working.
$('li div.selectClick').click(function() {
$(".div-select select").slideDown('slow');
})
.div-select { width:215px; display: none; }
.div-select select {
background: /*url(/assets/images/arrow-down.png)*/ no-repeat #1b4b93;
background-position: 205px center;
width: 215px;
height: 60px;
font: 200 10px/10px 'Montserrat', Arial, Helvetica, sans-serif;
padding:13px 20px 13px 12px;
color:#fff;
text-indent: 0.01px;
text-overflow: "";
select::-ms-expand {display: none;}
}
<li>
<div class="selectClick">Ver todas linhas</div>
<div class="div-select">
<select>
<option>Ver todas as linhas</option>
<option>Primeira opção</option>
<option>Segunda opção</option>
<option>Terceira opção</option>
<option>Quarta opção</option>
</select>https://pt.stackoverflow.com/posts/237641/edit#
</div>
</li>