JSFiddle - React, Tailwind, and code Playground
by robx
HTML
<h4 class='left'>Click
<a class="here" href="#" rel="1">here</a></h4>
<h4 class='right'>
<span class='pop'>
1
</span>
</h4>
JavaScript
var curpop = parseInt($('a[rel]').attr('rel'));
$('.here').live('click', function(eve) {
eve.preventDefault();
++curpop;
$('.pop').html(curpop);
console.log(curpop)
})