JSFiddle - React, Tailwind, and code Playground

HTML

<div class="ads-box" id="adbox-35"><a href="http://www.makeitrightnola.org" id="ad-35" target="_blank"><img src="/g/shows/sidebar/83172823_ad_image.png" alt="Make It Right"></a></div>

JavaScript

$( ".ads-box a" ).click(function( event ) {
  event.preventDefault();
  var href = this.href;
  var id = this.id;
  console.log(href);
  console.log(id);
  console.log(this);
});