// to get current year function getYear() { var currentDate = new Date(); var currentYear = currentDate.getFullYear(); document.querySelector("#displayYear").innerHTML = currentYear; } getYear(); // owl carousel script $(".client_owl-carousel").owlCarousel({ loop: true, margin: 20, nav: true, autoplay: true, navText: ['', ''], autoplayHoverPause: true, responsive: { 0: { items: 1 }, 1000: { items: 2 } } }); // end owl carousel script // product section owl carousel $(".product_owl-carousel").owlCarousel({ autoplay: true, loop: true, margin: 5, autoHeight: true, nav: true, navText: ['', ''], responsive: { 0: { items: 1 }, 576: { items: 2 }, 767: { items: 3 }, 1000: { items: 4 } } }); /** google_map js **/ function myMap() { var mapProp = { center: new google.maps.LatLng(40.712775, -74.005973), zoom: 18, }; var map = new google.maps.Map(document.getElementById("googleMap"), mapProp); }