JSFiddle - React, Tailwind, and code Playground

by Ronny

HTML

<button>Go to deal</button>

JavaScript

function sendReportPixel(){
    console.log('reporting, whats the problem');
}

$('button').click(function(){
    sendReportPixel();
    window.open('http://google.com');
});