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
Advertisement
Screen Shots:-
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>
input::-webkit-calendar-picker-indicator {
display: none;
} </style>
Advertisement
Screen Shots:-
Post a Comment for "DataList, textbox display suggested words under type"