Forum Moderators: open
How do I make the web site browsing without complete refresh?
We all use Gmail and Facebook. How can I make those links with anchors like, and refresh only some parts of the page (read from php/mysql):
#profile
#inbox
#/photo.php?pid=2272258&id=528532328&ref=nf
etc...
I use HTML, php and mysql.
Thanks!
your page would look something like this,
<html>
<head>
<title>Ajax Test</title>
<script language='javascript' type='text/javascript' src='./Prototype.js'></script>
</head>
<body>
<div id='ajaxContent' name='ajaxContent'></div>
<a href='./page.php?idx=1' onClick="return ajaxPage(this.href)">Update Page</a>
</body>
</html>
and your ajaxPage() function would look like this,
function ajaxPage(url){
new Ajax.Updater('ajaxContent', url);
return false;
}
That is the bace of ajax, if you want to go further and have your ajax function bookmarkable you will need to learn JS as its a long winded effot that requires about 50 browser work arounds. Prototype should get you started.