Is there any way to integrate mailchimp simple (one email input) with AJAX, so there is no page refresh and no redirection to default mailchimp page.
This solution doesn't work jQuery Ajax POST not working with MailChimp
Thanks
|
Is there any way to integrate mailchimp simple (one email input) with AJAX, so there is no page refresh and no redirection to default mailchimp page. This solution doesn't work jQuery Ajax POST not working with MailChimp Thanks |
|||||||||||||||
|
|
You don't need an API key, all you have to do is plop the standard mailchimp generated form into your code ( customize the look as needed ) and in the forms "action" attribute change "post?u=" to "post-json?u=" and then at the end of the forms action append "&c=?" to get around any cross domain issue. Also it's important to note that when you submit the form you must use GET rather than POST. Your form tag will look something like this by default:
change it to look something like this
Mail Chimp will return a json object containing 2 values: 'result' - this will indicate if the request was successful or not ( I've only ever seen 2 values, "error" and "success" ) and 'msg' - a message describing the result. I submit my forms with this bit of jQuery:
|
|||||
|
|
You must use server-side code in order to secure your MailChimp account. There is no way around this. The following is an updated version of this answer which uses PHP: The PHP files are "secured" on the server where the user never sees them yet the jQuery can still access & use. 1) Download the PHP 5 jQuery example here... http://apidocs.mailchimp.com/downloads/mcapi-simple-subscribe-jquery.zip If you only have PHP 4, simply download version 1.2 of the MCAPI and replace the corresponding http://apidocs.mailchimp.com/downloads/mailchimp-api-class-1-2.zip 2) Follow the directions in the Readme file by adding your API key and List ID to the 3) You may also want to gather your users' name and/or other information. You have to add an array to the Here is what my
4) Create your HTML/CSS/jQuery form. It is not required to be on a PHP page. Here is something like what my
Required pieces...
|
||||
|
|
|
I found a solution here: https://gist.github.com/1488819 It's more secure, because API Key is stored in PHP variables. |
|||
|
|
|
Based on gbinflames' answer, I kept the POST and URL, so that the form would continue to work for those with JS off.
Then, using jQuery's .submit() changed the type, and URL to handle JSON repsonses.
|
|||
|
|
|
So that's how I solved it: Form HTML:
JS:
Still need to validate it, but at least it works! If somebody has better solution - please post it here. |
|||||||||||||
|