Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ------------------------------------------------------------------------ */
- /* MAILCHIMP
- /* ------------------------------------------------------------------------ */
- $('.mailchimp').ajaxChimp({
- callback: mailchimpCallback,
- url: "//bluminethemes.us9.list-manage.com/subscribe/post?u=dae5eaf00c5b131b0e3561c00&id=9809da9e33" //Replace this with your own mailchimp post URL. Don't remove the "". Just paste the url inside "".
- });
- function mailchimpCallback(resp) {
- if (resp.result === 'success') {
- $('.success-message').html(resp.msg).fadeIn(1000);
- $('.error-message').fadeOut(500);
- } else if(resp.result === 'error') {
- $('.error-message').html(resp.msg).fadeIn(1000);
- }
- }
- /* ------------------------------------------------------------------------ */
- /* Start Javascript for Subscription Form
- /* ------------------------------------------------------------------------ */
- $('.subscription-form').submit(function(event) {
- var email = $('#email').val();
- var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
- $.ajax({
- url:'subscribe.php',
- type :'POST',
- dataType:'json',
- data: {'email': email},
- success: function(data){
- if(data.error){
- $('.error-message').fadeIn();
- }else{
- $('.success-message').fadeIn();
- $(".error-message").hide();
- }
- }
- })
- return false;
- });
Advertisement
Add Comment
Please, Sign In to add comment