JSFiddle - React, Tailwind, and code Playground

HTML

<div id="machin">tire mon doigt</div>

JavaScript

$('#machin').on('click', function(){
    var a = document.createElement('a');
    a.setAttribute("href", "http://www.google.fr");
    a.setAttribute("target", "_blank");
    var dispatch = document.createEvent("HTMLEvents");
    dispatch.initEvent("click", true, true);
    a.dispatchEvent(dispatch);
});

$('document').on('click','a',function(e) {
    var self = $(this);
    alert("prout");
});