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

link|improve this question
feedback

1 Answer

I tryed your markup with webshims lib and ervything seems fine (http://jsfiddle.net/trixta/xttwt/). Can you show your JS initialization code?

regards alex

Note: You don't need sssl, if you habe added yepnope (and vice versa). Mousepress is only used for Spinbuttons and custom-validity is used only for additional non-native validation constraints.

link|improve this answer
Thanks for your response Alex. I have some spin buttons and validation elsewhere in my system but thanks for the sssl advice. I used you initialisation code but no difference. It just displays two fields: the input and the select. – Joe Hopkins Feb 23 at 14:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.