How can I disable month selection in the jQuery datepicker?

后端 未结 4 821
遇见更好的自我
遇见更好的自我 2020-12-10 07:08

I am trying disable the left/right buttons that allow the user to change months. I\'ve removed the drop down list of months but can\'t get rid of the buttons.



        
4条回答
  •  失恋的感觉
    2020-12-10 07:50

    The mentioned solution did not work for me, I developped this:

    $('#datepicker').find('.ui-datepicker-next').remove();
    $('#datepicker').find('.ui-datepicker-prev').remove();
    

提交回复
热议问题