textbox with clear button code example
Example 1: clear textbox
txt.clear();
Example 2: 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>