html clearable input code example
Example: add clear button to text input
<input type="search" placeholder="Search..."/>
<style>
input[type=search]::-webkit-search-cancel-button {
-webkit-appearance: searchfield-cancel-button;
}
input[type=search] {
-webkit-appearance: none;
}
</style>