i want to add some hash ref linking that when i click on a menu button it changed to the actual section maybe from
http://www.mycompany.com/about to http://www.mycompany.com/work or maybe /something
i have this solution but i don't know how can i add this to my actually solution.
$(document).ready(function(){
$('#allcontent').load('data/home.html');
$('.hovers').click(function() {
var page = $(this).attr('href');
$('#allcontent').load('data/' + page + '.html');
return false;
});
});
Here is my Fiddle: DEMO
Maybe with this? window.location.hash =
Thank you so much