I have a page setup with a cycle plugin, and the last content div contains a Campaign Monitor newsletter sign up field. I am using their Ajax submit setup and the information is submitting (or if the email isn't formatted properly, the error message shows up), but the .slideDown function to hide the form and show the success message isn't working. There are no errors being thrown so am a bit baffled.
Here is the HTML:
<div class='content'>
<div class='block_1'><h2>blha blahs dsahdjsa</h2><a id='goto1' class='button' href='#'>subscribe to our newsletter</a></div>
<div class='block_2'>
<div id="theForm">
<h3>Sign-up for our E-Newsletter</h3>
<form action="http://1234.createsend.com/t/r/s/quhkry/" method="post" id="subForm">
<div>
<label for="Subscriber type">Subscriber type:</label><br />
<select name="cm-fo-nbiui">
<option value="1954589">Patient</option>
<option value="1954590">Practitioner</option>
</select>
<input type="text" name="cm-name" id="name" value="your name" onclick="clickclear(this, 'your name')" onblur="clickrecall(this,'your name')" />
<input class="required email" type="text" name="cm-quhkry-quhkry" id="quhkry-quhkry" value="your email address" onclick="clickclear(this, 'your email address')" onblur="clickrecall(this,'your email address')" />
<input type="text" name="cm-f-nbiut" id="Postcode" value="your postcode" onclick="clickclear(this, 'your postcode')" onblur="clickrecall(this,'your postcode')" />
<input type="submit" value="Subscribe" class="sub" />
</div>
</form>
</div>
<div id="confirmation" style="display: none;">Thanks for subscribing</div>
</div>
Here is the JS:
$(document).ready(function() {
$('.images').cycle({
fx: 'fade',
timeout: 6000,
});
$('.content').cycle({
fx: 'fade',
timeout: 0,
speed: '1000'
});
$('#goto1').click(function() {
$('.content').cycle(1);
return false;
});
});
;(function($) {
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
function checkEmail(email) {
var pattern = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
var emailVal = $("#" + email).val();
return pattern.test(emailVal);
}
$(function() {
$("#subForm input:submit").click(function() {
$('form#subForm').submit(function() { return false; });
var formAction = $("form#subForm").attr("action");
var id = "quhkry";
var emailId = id + "-" + id;
if (!checkEmail(emailId)) {
alert("Please enter a valid email address");
return;
}
var str = $("form#subForm").serialize();
var serialized = str + "&action=" + formAction;
$.ajax({
url: "http://website.com.au/proxy.php",
type: "POST",
data: serialized
});
});
});
})(jQuery);
Any ideas?