Answers for "how to add clear x in input type text field in form"

1

clear textbox

txt.clear();
Posted by: Guest on March-30-2021
0

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>
Posted by: Guest on December-01-2020

Code answers related to "how to add clear x in input type text field in form"

Browse Popular Code Answers by Language