Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.36 KB | None | 0 0
  1. function update(){
  2.     $.post("chathandler.php", {}, function(data){
  3.         $("#chatfield").val(data);
  4.         setTimeout('update()', 1000);
  5.     });
  6. }
  7.  
  8. $(document).ready(function(){
  9.     update();
  10.     $("#button").click(function(){
  11.         $.post("chathandler.php"), {message: $("#message").val()},function(data){
  12.                 $("#chatfield").val(data);
  13.                 $("#message").val("");
  14.             }
  15.     });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement