$(document).ready(function(){ //Check to see if the window is top if not then display button $(window).scroll(function(){ if ($(this).scrollTop() > 100) { $('.scrollToTop').fadeIn(); } else { $('.scrollToTop').fadeOut(); } }); //Click event to scroll to top $('.scrollToTop').click(function(){ $('html, body').animate({scrollTop : 0},500); return false; }); }); $( ".joblist" ).hide(); $('.CarrerRow button').on('click',function(){ $('.CarrerRow button').removeClass( "active" ); $(this).addClass( "active" ); $( ".joblist" ).slideUp(); $(this).siblings('.joblist').slideDown(); }) function initMap() { var myLatLng = { lat: 22.319416, lng: 114.208127 }; var map = new google.maps.Map(document.getElementById('map'), { zoom: 16, center: myLatLng, gestureHandling: 'cooperative' }); var marker = new google.maps.Marker({ position: myLatLng, map: map }); } $('.owl-video-play-icon').on('click',function(){ $(this).closest("div.item").find("img").remove(); })