I currently have a situation where I am loading external URLs into a div called #content without changing the address bar. Is there a way to continue loading these URLs into the div while providing individual links for people to copy, paste, and share? Here is an example of what I'm working on right now: www.lariverola.net
$(function() {
$('#menu a').click(function() {
$('#content').load($(this).attr('href'));
return false;
});
});
Any suggestions or help would be greatly appreciated. Thanks!