javascript - Date picker Kalendae not working on IE9 -
i'm using kalendae date picker chrome , firefox dosen't work ie9 (while author says it's compatible ie8). problem can display calendar nothing happens when click on date :/
does use date picker , if so, have had problem?
thank's!
--------------- edit -----------------
@deepu: don't have error. @amitapollo: mean date div/class? have give div id if want attach kalendae object it... code looks this:
var divcal = document.createelement('div'); divcal.setattribute('id', 'divcal'); divcal.style.position = 'absolute'; divcal.style.left = xmouseposition + "px"; divcal.style.top = ymouseposition - 150 + "px"; document.getelementbyid('section').appendchild(divcal); var cal = new kalendae('divcal', { months:1, mode:'select', weekstart:1, direction:'today-past' });
i have call change function this:
cal.subscribe('change', function (date, action) { console.log(date, action, this.getselected()); });
Comments
Post a Comment