I have this code :
<div class="fascia">
<div class="elements">
<h3 class="titolo"><a href="/link">Title</a></h3>
<div class="desc"><a href="/link">Desc</a></div>
</div>
<a id="photo" href="/link"> </a>
</div>
now I want to do an “alert” every time I go with the cursor hover every elements of fascia, how can I do it?
See demo
You may want to pass filter selector to children method (i.e.
children("div")) to avoid all children being selected (children and their children and so on, you will have multiple alerts for all children)