JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<div>Hello, World!</div>
<div id="div2">Hello, CSS3!</div>
<input onclick="call()" type="text" value="clickMe">
<input type="text" onclick="call()" value="text1">
JavaScript
function call()
{
alert($("input[type='text']:focus").val());
}