$('.nav').nav(); $('.slider').slick({ infinite: true, slidesToShow: 1, slidesToScroll: 1, arrow:true }); // tab $(document).ready(function(){ $('.career_tab .tab').click(function(){ var tab_id = $(this).attr('data-tab'); $('.career_tab .tab').removeClass('active'); $('.tab-content').removeClass('active'); $(this).addClass('active'); $("#"+tab_id).addClass('active'); }) }) // contact form submits $('#contacts-submit').on('click', function() { $('.contact-form').hide(); $('.success').fadeIn('fast'); }); // scroll top $(document).ready(function(){ //Check to see if the window is top if not then display button $(window).scroll(function(){ if ($(this).scrollTop() > 50) { $('.scrollToTop').fadeIn(); } else { $('.scrollToTop').fadeOut(); } }); //Click event to scroll to top $('.scrollToTop').click(function(){ $('html, body').animate({scrollTop : 0},500); return false; }); });