JSFiddle - React, Tailwind, and code Playground

by corinnekm

HTML

<div id="warenkorb-button" class="warenkorb-bg-color"><a id="wk-btn-a" href="#warenkorb">zum Warenkorb hinzuf&uuml;gen</a></div>

JavaScript

$(function() {
                 $(document).on('click', '#warenkorb-button a', function(xyz){
                              alert('test');
                              xyz.stopImmediatePropagation();                                   
                              });
});