Date text entry 

(function($){
    "use strict";

    var days_in_month = [ 31, 29, 31, ... 31 ];

    function DateTextEntry(element, options) {
        this.$element = $(element);
        // ...
    }

    DateTextEntry.prototype = {
        // ...
    };
})(jQuery);