Skip to content

Instantly share code, notes, and snippets.

View haojianzong's full-sized avatar

jakehao haojianzong

View GitHub Profile
@haojianzong
haojianzong / gist:c7ab2b71a4f955b1bbdb
Created December 28, 2014 03:36
jQuery Auto Active Menu
// this function will active menu using href match
// Author: http://www.paulund.co.uk/use-jquery-to-highlight-active-menu-item
function auto_active_menu() {¬
var url = window.location.href;¬
// Work for relative and absolute hrefs¬
$('.menu a').filter(function() {
return this.href == url;¬
}).addClass('active');¬
}
//
// StickyHeaderFlowLayout.h
// Wombat
//
// Created by Todd Laney on 1/9/13.
// Copyright (c) 2013 ToddLa. All rights reserved.
//
// Modified from http://blog.radi.ws/post/32905838158/sticky-headers-for-uicollectionview-using THANKS!
//