JSFiddle - React, Tailwind, and code Playground

by mraufk

HTML

<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<div>

        <input type="text" ID="txtFirstName" />
        <br />
        <input type="text" ID="txtLastName"  />
    </div>

JavaScript

$("input").focus(function() { $(this).css("background-color", "yellow"); });
        $("input").blur(function() { $(this).css("background-color", "white"); });