hash # url – single page website navigation

function hashChecker(){
    var hash = (window.location.hash).replace('#', '');
    if (hash.length == 0) {
        //no hash do something   
    } else {   
        //else do something with hash
      if (window.location.hash == "#hashname") {
      // do something
        }
    }
}