To select all anchor elements or "link_class" elements and add a you can use:
$("a.link_class").on("click", function(){
//your code here
});
(to select all links use "a". To select only .link_class elements use "link_class". The above code will select only links with class link_class)
You want this to run when the document is ready, so you wrap it on:
$(document).ready(function(){
$("a.link_class").on("click", function(){
//your code here
});
});
(this probably already exists within your application, just make sure you put the code that selects the links inside the document.ready callback)
Again, this will attach the event to all items that match the selector. If you only want a specific item, give it an id, and use that to select it.
$("#a-specific-id").on("click", function(){
//your code here
});
Alternatively, if you can't give it an ID, and only want to target a specific item, you could try the eq method like:
$("a.link_class").eq(INDEX).on("click", function(){
//your code here
});
Where INDEX is the index of the specific link in the collection of links returned by the selector.
I think you will benefit from spending some time at the jQuery learning center:
https://learn.jquery.com/
gtag_report_conversion()from that?