JSFiddle - React, Tailwind, and code Playground

by Bahman ParsaManesh

HTML

<input/>

JavaScript

jQuery(document).ready(function () {
    jQuery('input').click(function () {
        alert(jQuery('input').css('outline-color'));
    });
});