You have 2 choices:
- The firstone is act like that, just 1 page, put all the content in just 1 html. Put display: none; to all the other divs(all what you don't want show to the user) and then via JS change the visibility via
$('div').show;
/* or*/
$('div').hide;
- The secondone: is display:none or visibility:hidden to a global div (within all the page content) in visibility: hidden, or display:none and change it via:
$(document).ready(function(){
$(divToShow).show('slow');
/* or */
$(divToShow).slideup('slow');
/* or some effect */
});
The lastone it make a modal but depend the content It's
non-viable
Hope I helped,