I have this page, with a Default.aspx working as a "master" would work, and loading child pages with jQuery's load() function. Something Like this:
<ul id="navigation>
<li><a href="Item1.aspx"> Item 1</a></li>
<li><a href="Item2.aspx"> Item 2</a></li>
</ul>
<div id="contend">
<!-- Ajax loaded pages goes here -->
</div>
<div id="footer">
</div>
The problem is: when the user clicks on some item and, let's say, chooses to open on a new window (tab), He will obviously see just the items from that page, not the navigation, footer and anything else from the default page...
I'm searching for a workaround..
maybe with anchor control via url? like #item1