onFinished: function (event, currentIndex) {
$.post('mail-attach.php', $('#signup-form').serialize(), function( data ) {
alert( "Data Loaded: " + data );
});
}
onFinished: function (event, currentIndex) {
$.ajax({
type: "POST",
url: 'mail-attach.php',
data: new FormData($('#signup-form')[0]),
processData: false,
contentType: false,
dataType: "json",
success: function(data, textStatus, jqXHR) {
//process data
alert( "Data Loaded: " + data );
},
error: function(data, textStatus, jqXHR) {
//process error msg
},
});
}