im developing a site heavily based on jquery and involving wordpress. is there any way to navigate between pages without reloading the whole thing, other than simple hide/show functions or with hide/show how can i link to a certain part of the site?
for example if the home page is a heap of divs
<div id="1">
<p>content here</p>
</div>
<div id="2">
<p>more content here</p>
</div>
by default div 1 is shown and 2 hidden, but how could i load up the page with div 2 showing for example if someone wants to bookmark it...?
i could have a copy of the markup as a seperate file with the onload hide/show different for each one, and use the same coding file for functionaltiity..
would this work and any tips?
would it be better to build just a regular site?