Skip to content

Instantly share code, notes, and snippets.

View SashaKolbasov's full-sized avatar

Alex SashaKolbasov

View GitHub Profile
@SashaKolbasov
SashaKolbasov / script.js
Last active January 4, 2017 09:47
Form Reset
$('form').submit(function() {
$(this).trigger("reset");
});
@SashaKolbasov
SashaKolbasov / smoothscroll.js
Last active January 4, 2017 09:00
Smooth page scrolling.
// scrollTo
var scrolllink = $('selector');
scrolllink.click(function () {
var idscroll = $(this).attr('href');
$.scrollTo(idscroll, 1000, {
margin: 'true',
offset: -80
});
return false;
});