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;
Thanks for your answers.
If I change it as custom attribute, it needs major changes in my code.
As I am rendering the
<li>
tag from jquery, I replaced this codewith this
After that it works fine for me in IE 10.