I\'m working on a simple application which is single page based (due to project restrictions) and has dynamic content. I understand the dynamic content alright but what I don\'t
You can listen to the hashchange event:
hashchange
$(window).on('hashchange',function(){ $('h1').text(location.hash.slice(1)); });