File Manager
Back to List
|
Up to Parent Directory
| Current Directory: ~/61st/js
Editing: 61st/js/scrolling-nav.js
Full path: C:\ict\ICT\61st\js\scrolling-nav.js
Permissions: rwx
Write test: File appears not directly writable
Current process identity: IIS APPPOOL\DefaultAppPool
//jQuery to collapse the navbar on scroll $(window).scroll(function() { if ($(".navbar").offset().top > 0) { $(".navbar-fixed-top").addClass("top-nav-collapse"); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); } }); //jQuery for page scrolling feature - requires jQuery Easing plugin $(function() { $('a.page-scroll').bind('click', function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1500, 'easeInOutExpo'); event.preventDefault(); }); });