How to show an element only in this block?
.children()
method allows us to search through the children
use $(this).children()
open one item
$('ul li').click(function () {
$(this).children().slideToggle(300);
$(this).toggleClass("hide-open");
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul>
<li>Пункт <div class="hide">Это скрыто</div></li>
<li>Пункт <div class="hide">Это скрыто</div></li>
<li>Пункт <div class="hide">Это скрыто</div></li>
</ul>