$(document).ready(function() { // get rid of "http://" loc = location.href.substring(7); // Get rid of domain name loc = loc.substring(loc.indexOf("/")); // Get rid of fragment identifier var i = loc.indexOf("#"); if (i > -1) loc = loc.substring(0, i); if (window.console) console.log(loc); // Highlight navigator links to this page $("#navigator a[href='" + loc + "']").addClass('now'); });