views:

54

answers:

2

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.

A: 
Error: this.options.navigationPosition.toLowerCase is not a function
Source File: http://asexpress.de/calender/kalender.js?sfgdata=+sfgRmluamFuX1R5cGU9amF2YV9zY3JpcHQmRmluamFuX0xhbmc9SmF2YVNjcmlwdA%3D%3D+q
Line: 160
Eddie
Where did you see this error?Thanks in advanc.
A: 

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.

no