JSFiddle - React, Tailwind, and code Playground
by Denis
HTML
<script type="text/javascript">
window.onload = function(){
var elem = document.getElementsByClassName('title'), i = elem.length;
while(i--){
elem[i].onclick = function(i){
return function(){
alert(this.id)
};
}(i);
}
};
</script>
<p>Кликаем, не стесняемся:</p>
<a id="10" class="title">Статья про Ajax</a><br />
<a id="30" class="title">Статья про JavaScript</a><br />
<a id="100500" class="title">Статья про еще что-то</a>
CSS
a {
text-decoration: underline;
color: blue;
cursor: pointer;
}