Loading comments others automatically like facebook
**php code updated **
 <section class="panel-body">
<div class="container">
<div class="comment">
 <div class="commenter" name="comments">
 <img width="80px" height="80px" src="uploads/<?php echo $row['photo']; ?>">
 </div>
  <div class="comment-text-area">
      <textarea class="textinput"id="comment"  name="comments" placeholder="Comment Here......"></textarea>
     <button type="submit" class="butn"name="compost">post comment</button> 
  </div>
</div>
</div>
    </div>          
</fotm> 
       <div id="comments">
<?php include'cajax.php'; ?>   
  </div> 
 </section>
</section>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js">
</script>
<script type="text/javascript">
$(document).ready( function(){
$('#comments').load('cajax.php');
refresh();
});
    function refresh()
 {
  setTimeout( function() {
   $('#comments').load('cajax.php');
    refresh();
  }, 1000);
 }
  </script>
how to load comments automatically without page refreshing I know its possible with ajax but how to implement code please help us
 
    