Skip to content Skip to sidebar Skip to footer

DataList, textbox display suggested words under type

Suggested Words in Textbox/Datalist in HTML:-
  Datalist is used to create some data list items and assign it to a textbox, when the we enter the value that value in the textbox suggested words are displaying under the textbox.

Display Default/with Arrow Mark:-

Example Program:- (Editor)



Output:-



If you want to remove the Arrow point you can use the following style

<style>
input::-webkit-calendar-picker-indicator {
  display: none;
}
</style>









Advertisement


Screen Shots:-

Datalist in html



Post a Comment for "DataList, textbox display suggested words under type"