For the life of me I can't figure out why Webshim HTML5 forms (http://afarkas.github.com/webshim/demos/demos/webforms.html) won't work in Chrome.
It's the datalist feature I'm missing (all other features seem to be natively supported). It works in IE and FF but not in Chrome!
FYI: file paths are all fine, HTML validates and there are no script errors.
Can anyone point out what I'm doing wrong?
Code samples
head
<script src="/js/jquery-1.7.1.min.js"></script>
<script src="/js/modernizr.js"></script>
<script src="/js/yepnope.js"></script>
<script src="/js/extras/loaders/sssl.js"></script>
<script src="/js/extras/mousepress.js"></script>
<script src="/js/polyfiller.js"></script>
<script src="/js/extras/custom-validity.js"></script>
<script src="/js/webshim-config.js"></script>
HTML
<label for="client">Member</label>
<input type="text" name="client" autofocus="autofocus" id="client" list="allclients" autocomplete="off" required="required" placeholder="Start typing..." value="" />
<datalist id="allclients">
<select>
<option value="yada">yada</option>
<option value="yada">yada</option>
</select>
</datalist>
Many thanks,
Joe