Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. $('.chatUsuariosLista').click(function() {
  2. idUsuario = this.id;
  3. $("#chatMsg").load('inc_chatMensagens.php?de='+idUsuario+'&para='+$("#para").val());
  4. $("#para").val(idUsuario);
  5.  
  6. $('#chat2').attr({scrollTop: $('#chat2').attr('scrollHeight')});
  7.  
  8. });
  9.  
  10. <div id="chat2">
  11. <ul>
  12. <?php while ($row = $rs->fetch_assoc()) {?>
  13.  
  14. <?php if ($_GET['de'] == $row['de']) {?>
  15. <li>
  16. <div class="bubble">
  17. <span class="personName">Cliente:</span> <br>
  18. <span class="personSay"><?php echo $row['msg']; ?></span> <br>
  19. <span class="time"><?php echo $row['data']; ?></span>
  20. </div>
  21. </li>
  22. <?php }else{ ?>
  23. <li>
  24. <div class="bubble2">
  25. <span class="personName2">Você:</span> <br>
  26. <span class="personSay2"><?php echo $row['msg']; ?></span><br>
  27. <span class="time2"><?php echo $row['data']; ?></span>
  28. </div>
  29. </li>
  30. <?php } ?>
  31.  
  32. <?php } ?>
  33. </ul>
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement