JSFiddle - React, Tailwind, and code Playground
by fredd man
JavaScript
if(query != '')
{
$.ajax({
url:"names.jsp",
method:"POST",
data:{query:query},
success:function(data) {
$('#nameList1').fadeIn();
$('#nameList1').html(data);
}
});
}
else {
// clear the results
$('#nameList1').html('');
}