// to get current year function getYear() { var currentDate = new Date(); var currentYear = currentDate.getFullYear(); document.querySelector("#displayYear").innerHTML = currentYear; } getYear(); // nice select $(document).ready(function () { $('select').niceSelect(); }); // date picker $(function () { $("#inputDate").datepicker({ autoclose: true, todayHighlight: true }).datepicker('update', new Date()); }); // owl carousel slider js $('.team_carousel').owlCarousel({ loop: true, margin: 15, dots: true, autoplay: true, navText: [ '', '' ], autoplayHoverPause: true, responsive: { 0: { items: 1, margin: 0 }, 576: { items: 2, }, 992: { items: 3 } } })