pastebin

Paste Search Dynamic
Recent pastes
edit form submit function
  1. $(document).ready(function() {
  2.                     $('#edit-form').submit(function(event) {
  3.                         event.preventDefault();
  4.                         $('#loading').show();
  5.                         $.post('/script.py', $('#edit-form').serialize(), function(data) {
  6.                             $('#success-message').show();
  7.                             $('#loading').hide();
  8.                         });
  9.                     });
  10.                 });
Parsed in 0.013 seconds