edit form submit function
$(document).ready(function() {
$('#edit-form').submit(function(event) {
event.preventDefault();
$('#loading').show();
$.post('/script.py', $('#edit-form').serialize(), function(data) {
$('#success-message').show();
$('#loading').hide();
});
});
});
Parsed in 0.013 seconds