Here is an example of the kind of thing im looking at
- Code: Select all
<body>
<?php require("comments_lib.php");
$comment_class= new Comments('Some','Data','Passed')?>
<div id="post">
<p>This is a random post</p>
</div>
<div id="comments"><?php $comment_class->display_comments();?></div>
</body>
So that is a very simplified version of a page that i am trying to make and basically i want to use AJAX to reload the div #comments without having to reload the full page... is this possible and if so how?
if i can get away with it i dont really want to use JQuery but i will if i have to.
Any help would be appreciated.
Thanks
Matt.


