$(document).ready(function() { if(window.location.hash==''){ window.location.hash="#/users"; // home page, show the default view (user list) }else{ $(window).trigger( "hashchange" ); // user refreshed the browser, fire the appropriate function } });