birthdaypicker
birthdaypicker copied to clipboard
Attempts to mimic the functionality of the birthday select lists on the Facebook signup page. It also adds some additional options.
I use this for load birthdaypicker. $(document).ready(function() { $("#picker1").birthdaypicker({}); }); It does not load/display in IE 9 and 10
Hello, In my use case i found it handy to add a trigger(event) on hidden element value change. That was causing bubbling and "too much recursion" errors, so I added...
The day is reset when the current year is selected, and FutureDates is not on. This is the code that does it: // reset the day selection $day.children(":first").attr("selected", "selected"); Is...
Using the below, it alleviates the strange issue of chrome parsing the date differently. function parseDate(input) { var parts = input.match(/(\d+)/g); // new Date(year, month [, date [, hours[, minutes[,...
Occasionally, the plugin fails on line 100, with the error, "Object has no method 'appendTo'" which is obviously crazy, since it does. It happens sporadically, on all browsers. I can't...
Currently the date value can be formatted like this YYYY-M-D depending on the day and month. How can I change it so that it is always YYYY-MM-DD?
Dependency on Date(string) constructor which does not have a standardized behaviour (i.e. spec on what formats are parsable). yyyy-mm-dd is not (on a Mac). Perhaps yyyy-mm-dd fails someplace else but...
Just wanted to let you know that the defaultDate doesn't work with mm-dd-yyyy format as it's shown at http://abecoffman.com/stuff/birthdaypicker/ It was no big deal for me since changing the defaultDate...
I just realized that it would be really awesome if I could more easily access the hidden date from within the birthdaypicker instance itself instead of having to select the...