I am pretty new in JQuery and I have the following situation:
<!-- Bottone relativo ai progetti WIFI: -->
<a title="WIFI" href="javascript: void(0)" id="showWifi_${item.index}" class="showWifi">
<div class="news_box news_box_01 hvr-underline-from-center " style="margin-right: 50px;"></div>
</a>
I have the a tag having class="showWifi".
I have to use JQuery to select the first div element inside this a tag having class="showWifi".
I don't want set an id to this tag, but I want use the JQuery syntax to select the first div tag
How can I do this?