$(document).ready(function() { // popup when they try to log in or signup $('#login, #signup, .social-media-icons').click(function() { $('#popup') .text('Coming Soon!') .slideDown() .delay(4000) .slideUp(); }); // email submission $('#email-form').submit(function(e) { e.preventDefault(); $.ajax({ url: 'https://ucharify-api.herokuapp.com/api/users/landing', type: 'post', data: $('#email-form').serialize(), success: function(data) { //whatever you wanna do after the form is successfully submitted $('#popup') .text('Added to list! Thank you for joining!') .slideDown() .delay(4000) .slideUp(); }, error: function(error) { $('#popup') .text('Email invalid or exists') .slideDown() .delay(3000) .slideUp(); } }); }); // Countdown $('#countdown').countdown('2019/03/15', function(event) { $(this).text(event.strftime('%D days %H:%M:%S')); var $this = $(this).html( event.strftime(`