View Single Post
Old 01-11-2009, 06:22 PM   PM User | #4
swoles
New to the CF scene

 
Join Date: Jan 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
swoles is an unknown quantity at this point
like this:


// ajax event to post research panel form
$('#researchForm').submit(function() {
var email = $('input.email',this).val();
var postal = $('input.postal',this).val();

var obj = {
url: '/?event=action.researchpaneladd',
post: { email: email, postal: postal, type: 'wrw 2009' }
}
$.post(obj.url, obj.post);
$('#panelMessage').html('Thank you.<br />' + email + ' has been added to the research panel list.<br />');
return false;
});
swoles is offline   Reply With Quote