I have written a Javascript开发者_如何学运维 calender, that is dynamically generated by Javascript. But if does not functions in IE.
here is the link to my script.
http://asexpress.de/calender/
We one looks at IE Developer tool, the newly generated contents are there but do not show in browser.
Any help please.
Looks like you forgot some quotes. On line 15 of kalendar.js, change:
"navigationPosition": top
to
"navigationPosition": "top"
...with options.navigationPosition
defined as a string, the call to toLowerCase
on line 160 succeeds.
Error: this.options.navigationPosition.toLowerCase is not a function
Source File: http://asexpress.de/calender/kalender.js?sfgdata=+sfgRmluamFuX1R5cGU9amF2YV9zY3JpcHQmRmluamFuX0xhbmc9SmF2YVNjcmlwdA%3D%3D+q
Line: 160
精彩评论