Skip to content

Instantly share code, notes, and snippets.

View iamravenous's full-sized avatar

Franco Moya iamravenous

View GitHub Profile
@iamravenous
iamravenous / jquery.smooth-scroll-pageload.js
Last active April 23, 2024 09:05
Smooth scrolling on page load if URL have a hash
/*
* Smooth Scroll on Pageload
* Smooth scrolling on page load if URL have a hash
* Author: Franco Moya - @iamravenous
*/
if (window.location.hash) {
var hash = window.location.hash;
if ($(hash).length) {
@iamravenous
iamravenous / jquery.smooth-scroll-anchor-link.js
Last active April 24, 2024 03:18
Automatically detects the hash and scroll smoothly to anchor link with URL hashchange