Skip to content

Instantly share code, notes, and snippets.

View bdemartino's full-sized avatar

Brandon DeMartino bdemartino

  • T8 Webware
  • Iowa
View GitHub Profile
function showLocation(){
var currentLocation = (window.location.hash).replace('#','');
if(currentLocation !== '' && currentLocation != null && typeof currentLocation !== "undefined"){
$('.activeLocation').addClass('hide').removeClass('activeLocation');
$('.' + currentLocation).removeClass('hide').addClass('activeLocation');
}
}
if (Modernizr.hashchange){
window.onhashchange = showLocation;