In this tutorial, We will learn how to get event dates on click in the full calendar using jquery. We will show get event date on click in the full calendar using jquery. 




Example:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width">
        <title>Fullcalendar Get Event Date On Click Example Using Jquery</title>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fullcalendar@5.3.1/main.min.css"/>
    </head>
    <style type="text/css">
        #calendar {
            width:70%;
            margin: 20px auto;
        }
    </style>
    <body>
        <div class="container">
            <div class="row">
                <div class="col-md-12 text-center">
                    <div id="calendar"></div>
                </div>
            </div>
        </div>
    </body>
    <script src="https://code.jquery.com/jquery-2.1.4.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/fullcalendar@5.3.1/main.min.js"></script>
    <script src="https://fullcalendar.io/assets/demo-to-codepen.js"></script>
    <script type="text/javascript">
        document.addEventListener('DOMContentLoaded', function () {
            var calendarEl = document.getElementById('calendar');
            var calendar = new FullCalendar.Calendar(calendarEl, {
                eventClick: function (info) {
                    var eventObj = info.event;
                    if (eventObj.start) {
                        alert('Clicked' + eventObj.start);
                    }
                },
                events: [
                    {
                        title: 'simple event',
                        start: '2021-03-27'
                    },
                    {
                        title: 'New Event',
                        start: '2021-10-03'
                    }
                ]
            });
            calendar.render();
        });
    </script>
</html>


Thanks, May this example will help you...