Skip to content

Instantly share code, notes, and snippets.

@jeffreysfridge
jeffreysfridge / gist:29b1d308e42a1b2ea156
Last active August 29, 2015 14:17
Bootstrap Media Queries
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
@jeffreysfridge
jeffreysfridge / gist:7e111ebac091c65cda25
Last active August 8, 2016 17:12
Smooth Scroll to Anchor
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
});
/* target any href with '#' */
$("a[href^='#']").click(function(event){
event.preventDefault();
if (this.hash.substr(1) != ''){