Skip to content

Instantly share code, notes, and snippets.

View ihortkachuk's full-sized avatar

Ihor Tkachuk ihortkachuk

View GitHub Profile
/**
* Для плавного перехода по ссылкам
*/
$(document).ready(function () {
$('.panel-nav a[href="#about-us"]').addClass('active');
$(document).on("scroll", onScroll);
//smoothscroll
$('.panel-nav a[href^="#"]').on('click', function (e) {
e.preventDefault();
$(document).off("scroll");