$(document).ready(function(){ // add # to URL when not on home page $('#nav-main li a').each(function() { var cleanText = $(this).text(); cleanText = cleanText.toLowerCase().replace(/ /g, '-'); var root = location.protocol + '//' + location.host; $(this).attr('href', root+'#'+cleanText); }); });