Advertisement
Tiebob

Untitled

Apr 23rd, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     <script>
  2.     $(document).ready(function(){
  3.         getMessages();
  4.        
  5.     });
  6.  
  7.     var getMessages = function(){
  8.         $.get("/guestbook", function(data, status){
  9.             console.log(data);
  10.             console.log("status=" + status);
  11.             renderMsgs(data);
  12.         });
  13.     };
  14.  
  15.  
  16.     var renderMsgs = function(msgs){
  17.         $(msgs).each( function(index, msg){
  18.             console.log("index=" + index);
  19.             console.log(msg);
  20.         });
  21.     };
  22.  
  23.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement