JSFiddle - React, Tailwind, and code Playground
HTML
<img alt="coco" onclick="vote()"/>
JavaScript
function vote() {
alert("test");
var path="http://www.apple.com"
$.ajax({
url: path
})
.done(function (msg) {
alert("Data Saved: " + msg);
});
}