You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 29, 2018. It is now read-only.
Since I'm using this calendar for a personal project and want to keep it and I've recently updated to the new jQuery 1.7 and it seems that code of this calendar is now broken. While clicking on the icon, it just wasn't refreshing the input anymore...
Again I debugged it and found the problem to be:
// the problematic line, this isn't supported somehow
(calendar.dateField.attr('tagName') == 'INPUT')
// need to be replaced by this
(calendar.dateField.get(0).tagName == 'INPUT')
Am the only one using this? No one ever reply here... anyways, hope it helps
The text was updated successfully, but these errors were encountered:
Since I'm using this calendar for a personal project and want to keep it and I've recently updated to the new jQuery 1.7 and it seems that code of this calendar is now broken. While clicking on the icon, it just wasn't refreshing the input anymore...
Again I debugged it and found the problem to be:
// the problematic line, this isn't supported somehow
(calendar.dateField.attr('tagName') == 'INPUT')
// need to be replaced by this
(calendar.dateField.get(0).tagName == 'INPUT')
Am the only one using this? No one ever reply here... anyways, hope it helps
The text was updated successfully, but these errors were encountered: