JSFiddle - React, Tailwind, and code Playground
by ilazarte
HTML
<button id="clickme">
Click
</button>
JavaScript
$("#clickme").click(function(event) {
alert(new Date() + "=>" + event.shiftKey);
});
by ilazarte
<button id="clickme">
Click
</button>
$("#clickme").click(function(event) {
alert(new Date() + "=>" + event.shiftKey);
});