Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     alert('poop');
  3.     $('#filelist').load('filestable.php').show();
  4.    
  5.     $('#sel_company').change(function() {
  6.         var sel_company = $(this).value;
  7.        
  8.         $.post('filestable.php', { company: sel_company },
  9.         function(result) {
  10.             $('#filelist').html(result).show();
  11.         });
  12.     })
  13. });
Add Comment
Please, Sign In to add comment