JSFiddle - React, Tailwind, and code Playground
by NickU
HTML
<input id="1" value="2" />
<input id="2" value="2" />
CSS
#dropdown1:hover
{
position: fixed;
}
JavaScript
var input = $('input');
console.log( " Input,length=" + input.length);
console.log( $('input').attr('id') );
setTimeout(setClear, 500, 1, 2, 3);
function setClear(id1, id2, id3)
{
console.log( typeof id1 + " " + typeof id2 + " " + typeof id3 );
}