My site is developed with HTML5 and CSS3.
The Custom value is assigned in <li> tag type attribute.
My problem is, IE 10 does not accept the custom value for type attribute. So its throwing the error and not loading the <ul> content. There is no issues on other browsers.
Is there any way to make it work in IE 10.
Sorry. Here is the code. The <li> tag is rendered via jquery like this
EntryElm[0].id = list[i].id;
EntryElm[0].type = list[i].type;
You should use atributes that start with "data-".
Take a look here: http://ejohn.org/blog/html-5-data-attributes/
And here is link to the topic in HTML5 specs.