Guest User

Untitled

a guest
Dec 15th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div id="listar"></div>
  2.  
  3. <script src="assets/js/jquery-3.1.1.min.js"></script>
  4.  
  5. <script type="text/javascript">
  6. function mostrar(){
  7. $(document).ready(function(){
  8. $.ajax({
  9. type:'post',
  10. dataType: 'json',
  11. url: 'atualizar.php',
  12. success: function(dados){
  13. alert(dados);
  14. }
  15. });
  16. });
  17. }
  18. //setInterval(function(){ mostrar; }, 3000);
  19. setInterval(mostrar, 3000);
  20. </script>
  21.  
  22. $ver = "teste";
  23. echo json_decode($ver);
Add Comment
Please, Sign In to add comment