Werfen Sie einen Blick auf die History.js-Bibliothek, die sowohl moderne Browser verarbeitet als auch Fallbacks für ältere HTML4-Browser bietet
https://github.com/browserstate/history.js/
In Ihrem Event-Handler in $(".mLink").click(function(){...
Immer wenn du eine Schriftrolle auslöst, kannst du so etwas hinzufügen
case "mL0":
$("html, body").stop().animate({ scrollTop: 0}, 1000, 'easeInOutExpo');
History.pushState(null, null, "?home");
break;
case "mL1":
$("html, body").stop().animate({ scrollTop: ($('#filter').offset().top-72) }, 1000, 'easeInOutExpo');
History.pushState(null, null, "?portfolio");
break;
...
Wunderschöne Portfolio-Site übrigens.