aahaider Posted October 17, 2012 Share Posted October 17, 2012 How to make a datalist in javascript. Html datalist does not work in old browser so i want to make a datalist in javascript.please help me. Quote Link to comment Share on other sites More sharing options...
trq Posted October 17, 2012 Share Posted October 17, 2012 Before you can get any help, you will first have to define exactly what a datalist is. Quote Link to comment Share on other sites More sharing options...
aahaider Posted October 17, 2012 Author Share Posted October 17, 2012 I want to make a datalist which work like a html5 datalist.As you can see in many website like google when you enter any keyword it gives a relative words for auto completaion.I know google use database for auto compeltaion But it is not a problem,I want to get only like this list. http://www.quackit.com/html_5/tags/html_datalist_tag.cfm Here is a html5 datalist.But old doesnot support this.I want to make a datalist like this in javascript which works in all browser except those who do not support javascript. I hope it can understand you.Thanks Quote Link to comment Share on other sites More sharing options...
kicken Posted October 17, 2012 Share Posted October 17, 2012 What you would do is create a hidden <div> tag and then show it when the user puts focus on the desired input. There are some scripts out there that will enable <datalist> functionality via JS for older browser while letting browsers that support it handle it on their own. Check this HTML5 Polyfills list for a bunch of compatibility scripts. There is a section for <datalist>, just do a search on that page. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.