JSFiddle - React, Tailwind, and code Playground

HTML

<div id="cont">
    <input type="text" id="search">
</div>

JavaScript

for(i=0;i<10;i++){
$('#search').animate({
		borderColor : 'red'
	}, 500);
  $('#search').animate({
		borderColor : 'black'
	}, 500);
}