JSFiddle - React, Tailwind, and code Playground

HTML

<input />

JavaScript

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