I want monthpicker to open all the time when page loads. And Change Month or Year it will Automatically Updated to lable. I can Handle Event for label updates and etc.
but I want it Open on Page is loaded. I'm following this answer :- https://stackoverflow.com/a/6013093/4952944
I have tried :- http://jqueryui.com/datepicker/#inline But it works for date I want to make it work for Month and year picker.
I tried a demo with if I us a Division with jquery UI.
Date: <div id="datepicker"></div>
And I use Jquery like this :-
$( function() {
$( "#datepicker" ).datepicker();
} );
It works datepicker opens Inline and open continuously. But I want to make it work for above SO's code. I tried everything like put it on when page loads. I'm not sure But may be due to some change events it's not loading on page Load.