I have this line
<li id="liPryName"> <span><i class="glyphicon glyphicon-folder-open"></i></span> <div class="id">Valor de Id</div></li>
I would like with jquery to be able to access the value of class="id"
by clicking on the id="liPryName"
I've tried this, but it does not give the result I want. Within <Li>
I need to find the value of class="id".
$("#liPryName").dblclick(function () {
alert($(this).html());
})