Fullcalendar Get Start and End Date by Click Event Example
I will share with you stick of how to get start and end date in fullcalendar js plugin. i will get start date and end date interval by using "getView" in full calendar js. We can also get start and end date by event of fullcalendar.
Yesterday i was working on my php laravel project and i require to write custom click event for next and previous button and load data by ajax. at that time i require to get start date and end date in my jquery file. i found way to get start and end date by using fullcalendar event.
We can get start date by getView event with intervalStart.
We can get end date by getView event with intervalEnd.
You can see here very simple way to get date:
$('#calendar').fullCalendar('getView').intervalStart
$('#calendar').fullCalendar('getView').intervalEnd
Now you can see my event code with proper format:
$('.fc-next-button').click(function(){
var month = $('#calendar').fullCalendar('getView').intervalStart.format('MM');
var year = $('#calendar').fullCalendar('getView').intervalEnd.format('YYYY');
});
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel 10 Scout Full Text Search Tutorial
- Jquery Moment Convert String to Date Example
- JQuery Moment JS Subtract Seconds to Datetime Example
- JQuery Moment Add Seconds to Datetime Example
- JQuery Moment Add Month to Date Example
- JQuery Moment Subtract Days to Date Example
- JQuery Moment Add Days to Date Example
- Laravel Fullcalendar Example Tutorial
- JQuery Redirect to Another Page After 5 Seconds Example
- Add Edit Delete Table Row Example using JQuery
- How to Remove Empty or Null Values from Array in JQuery?
- How to Remove Comma from String in JQuery?
- JQuery Draggable Sortable Table Rows Example
- Preview an image before Upload using jQuery Example