Quote:
1) After submitting the form page not refreshed email value still exist in the popup box.It should be blank after entering email id.
|
In reboot_newsletter_popup.php after...
Code:
klass = 'response-success';
Insert...
Code:
$("input#signup-email").val("");
Quote:
2) After submitting form I want to display an alert message saying "Thank You".
|
It already does that...
Code:
if($insertSignup){ // If insert is successful
$status = "success";
$message = "You are subscribed!";