Guest User

Untitled

a guest
Jan 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $(document).on('click', 'a#user_list', function () {
  2. //muestra la lista
  3. getUserList(this);
  4.  
  5. });
  6. $(document).on('click', 'a#user_form', function () {
  7. //muestra formulario
  8. showUserform(this);
  9.  
  10. });
  11. //actualiza cada cierto tiempo
  12. $(document).ready(function() {
  13. var refreshId = setInterval( function(){
  14. //muestra la lista
  15. getUserList(this);
  16. }, 'json');
  17. }
  18.  
  19. }, 1000 );
  20. });
Add Comment
Please, Sign In to add comment