2
I have the following code
<div class="produtosMenuItens">
<div class="produtosMenuItensTit bs">Residencial</div>
<ul class="produtosMenuItensDiplay" style="display: block;">
<li class="produtosMenuItensLista">ITEM 1</li>
<li class="produtosMenuItensLista">ITEM 2</li>
</ul>
</div>
<div class="produtosMenuItensTit">Industrial</div>
<ul class="produtosMenuItensDiplay" style="display: none;">
<li class="produtosMenuItensLista">ITEM 3</li>
<li class="produtosMenuItensLista">ITEM 4</li>
</ul>
</div>
Next, there are two menus, when I select ITEM 1, and enter the page in question, I want it to be highlighted, can be adding a class via Jquery, how do I do this?
Jquery is like this:
$(".produtosMenuItensTit").click(function() {
if($(this).parent().find(".produtosMenuItensDiplay").css('display') == 'none'){
$(".produtosMenuItensDiplay").css('display','none');
$(this).parent().find(".produtosMenuItensDiplay").show();
}
else{
$(this).parent().find(".produtosMenuItensDiplay").hide();
}
});
I could explain your doubt a little better?
– Felipe Avelar
@Felipeavelar I forgot to post Jquery, already includes there. I want when I click on the Menu, and I want the page to be showing in the LI which item was selected.
– Felipe Viero Goulart