| Current Path : /home/w/u/e/wuectly/www/modules/mod_mailjet/includes/ |
| Current File : /home/w/u/e/wuectly/www/modules/mod_mailjet/includes/mod_mailjet.js |
/**
* Created with JetBrains PhpStorm.
* User: jonathan
* Date: 10/31/12
* Time: 10:23 AM
* To change this template use File | Settings | File Templates.
*/
jQuery(document).ready(function($){
$('.mailjet-subscribe').submit(function(e) {
e.preventDefault();
var f = $(e.currentTarget);
var p = f.parent();
$.ajax({
type: "POST",
url: "index.php",
data: f.serialize(),
dataType: "json",
success: function(data){
p.find('.mailjet-error').hide();
p.find('.mailjet-success').show();
},
error: function() {
p.find('.mailjet-success').hide();
p.find('.mailjet-error').show();
}
});
});
});