JSFiddle - React, Tailwind, and code Playground

by dima_k

HTML

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

<script src="http://planeteunoia.com/wp-content/themes/goodwork/js/scripts.min.js"></script>

<button>Click to check if jQuery click() event working</button>

JavaScript

jQuery('button').click(function(e){
    alert('Here we are');
});