mirror of
https://github.com/dawidolko/Website-Templates.git
synced 2025-10-27 07:53:11 +01:00
21 lines
575 B
JavaScript
21 lines
575 B
JavaScript
$(document).ready(function() {
|
|
"use strict";
|
|
// --------------Newsletter-----------------------
|
|
|
|
$(".newsletter-signup").ajaxChimp({
|
|
callback: mailchimpResponse,
|
|
url: "" // Replace your mailchimp post url inside double quote "".
|
|
});
|
|
$( window ).resize(function() {
|
|
location.reload();
|
|
});
|
|
function mailchimpResponse(resp) {
|
|
if(resp.result === 'success') {
|
|
|
|
$('.alert-success').html(resp.msg).fadeIn().delay(3000).fadeOut();
|
|
|
|
} else if(resp.result === 'error') {
|
|
$('.alert-warning').html(resp.msg).fadeIn().delay(3000).fadeOut();
|
|
}
|
|
};
|
|
}); |