Let's suppose that throughout the sun I have several links with the same class, as I can know the index that is that link when clicking.
<a href="#seccion" class="section-modchooser-link"></a> // Este seria el indice 0
<a href="#ejemplo" class="section-modchooser-link"></a> // Este seria el indice 1
<a href="#otro-ejemplo" class="section-modchooser-link"></a> // Este seria el indice 2
$('a.section-modchooser-link').on('click',function(e){
e.preventDefault()
var clicked = $(this)
})
What I'm looking for: if I click on link 1, know that the link inside the sun is number 1