Reputation: 3028
How Make Page Navigation in php without reloading the page without jquery like facebook has.
ex. for welcome page : http://www.facebook.com/?sk=welcome
for friends list : http://www.facebook.com/?sk=ff&ap=1
for news feed link http://www.fack.com/?sk=nf
with clicking the link instead of reloading whole page the appropriate content be loaded. how to do this without javascript, jquery
Upvotes: 0
Views: 395
Reputation: 13667
If you want it done the same way that Facebook does, you’ll have to use JavaScript. There’s little way to do it without it.
Upvotes: 0
Reputation: 1380
Without JS and jQuery, the only way will be an <iframe>
.
Look at this documentation for more.
Upvotes: 1