вообще там внутри еще выполняется кое что:
$("#"+parentDivId+"_div_monthpicker :button").click(function(e) {
                
                $("#"+parentDivId+"_div_monthpicker :button").removeClass();
                $("#"+parentDivId+"_div_monthpicker :button").addClass('monthpicker_btn');
                $("#"+this.id).addClass('monthpicker_btn monthpicker_btn_selected ui-corner-all');
                var btn_id = "#"+parentDivId+"_month_";
                
                callback($("#"+parentDivId+"_select_year").val(), this.id.substr(btn_id.length-1));
                
                e.preventDefault();
	});