Datalist browser support (Dec 2011) is Firefox 4+, Opera 10.6+, and IE 10. It's reasonable that you'd want WebKit support. So. This.
<inputtype="search" list="states" placeholder="Find U.S. State"><datalistid="states"><optionvalue="Alabama"><optionvalue="Alaska"><!-- all states --></datalist><scriptsrc="js/jquery-1.7.1.js"></script><scriptsrc="js/modernizr.custom.50983.js"></script><script>yepnope({test : (!Modernizr.input.list||(parseInt($.browser.version)>400)),yep : ['js/jquery.relevant-dropdown.js','js/load-fallbacks.js']});</script>load-fallbacks.js calls the plugin. Example contents:
$('#search').relevantDropdown();$('#name').relevantDropdown({fadeOutSpeed: 0,// optional, default: 'normal;change: function(new_text){console.log('the new value is: ',new_text);}});- Better IE styling (drop shadows don't work)
- Remove Modernizr and jQuery dependencies (make totally standalone)