JSFiddle - React, Tailwind, and code Playground

by Shrinivas Shukla

HTML

<a class='ad' target='_blank' href='http://www.google.com'> This is Ad</a><br>
<a target='_blank' href='http://www.google.com'> This is Not an Ad</a>

JavaScript

var points = 0;

$("a.ad").click(function() {
    points++;
    //send point to server
    //tell the user about the increase in points
    alert(points);
});