JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#" id="first">First</a><br>
<a href="#" id="second">Second</a><br>
<a href="#" id="third">Third</a><br>
<a href="#" id="forth">Forth</a><br>

JavaScript

//Choose which ids I want to iterate
ids = ['#first', '#second', '#third', 'forth']

//For all the ids there are
for ( i=0; i<ids.length; i++ ) {
    
    //Select an item
    item = ids[i]
    
    //Add a click handler to that item
    $( item ).click(function() {
          alert( "Handler for "+ item + " called." );
    });
}