| Server IP : 162.241.24.140 / Your IP : 216.73.217.86 Web Server : Apache System : Linux box5876.bluehost.com 5.14.0-687.12.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jun 7 14:39:27 EDT 2026 x86_64 User : ahfcompk ( 3063) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home2/ahfcompk/public_html/akdcm/js/ |
Upload File : |
/*
notifyMe.js v1.0.0
Copyright (c)2014 Sergey Serafimovich
*/
(function ( $ ) {
"use strict";
$.fn.notifyMe = function( options ) {
// Default options.
var settings = $.extend({
// Error and success message strings
msgError404: "Service is not available at the moment. Please check your internet connection or try again later.",
msgError503: "Oops.,Something went wrong.",
msgErrorValidation: "This email address looks fake or invalid. Please enter a real email address.",
msgErrorFormat: "Your e-mail address is incorrect.",
msgSuccess: "Congrats! You are in list."
}, options );
var $this = $(this);
var input = $(this).find("input[name=email]");
var action = $(this).attr("action");
var note = $(this).find(".note");
var message = $("<div class='col-lg-12 align-center' id='message'></div>").appendTo($(this));
var icon = $("<i></i>")
var iconProcess = "fa fa-spinner fa-spin";
var iconSuccess = "fa fa-check-circle";
var iconError = "fa fa-exclamation-circle";
input.after(icon);
$(this).on("submit", function(e){
e.preventDefault();
// Get value of input
var email = input.val();
// Test if the value of input is actually an email
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
if(re.test(email)) {
icon.removeClass();
icon.addClass(iconProcess);
$(this).removeClass("error success");
message.text("");
note.show();
$.ajax({
type: "POST",
url: action,
data: {email: email},
dataType: "json",
error: function(data){
// Add error class to form
$this.addClass("error");
note.hide();
// Change the icon to error
icon.removeClass();
icon.addClass(iconError);
// Determine the status of response and display the message
if(data.status == 404) {
message.text(settings.msgError404);
} else {
message.text(settings.msgError503);
}
},
}).done(function(data){
// Hide note
note.hide();
if(data.status == "success") {
// Add success class to form
$this.addClass("success");
// Change the icon to success
icon.removeClass();
icon.addClass(iconSuccess);
$('input').val("");
input.trigger('input');
message.text(settings.msgSuccess);
} else {
// Add error class to form
$this.addClass("error");
// Change the icon to error
icon.removeClass();
icon.addClass(iconError);
if (data.type == "ValidationError") {
message.text(settings.msgErrorValidation);$('input').val("");
} else {
message.text(settings.msgError503);
}
}
});
} else {$('input').val("");
// Add error class to form
$(this).addClass("error");
// Hide note
note.hide();
// Change the icon to error
icon.removeClass();
icon.addClass(iconError);
// Display the message
message.text(settings.msgErrorFormat);
}
});
};
}( jQuery ));