Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $('#searchconfig').change(function(){
  4. $.post('getconfig.php', $(this).serialize(), function(data) {
  5. $('#resultconfig').html(data);
  6. });
  7. return false;
  8. });
  9. });
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement