[SOLVED] Subscribe via ajax

We integrated the newsletter-subscription form into our page footer, simply by placing this code into the page footer:

<?php
global $Shortcode;
$args = array('list' => 1);
echo $Shortcode->subscribe( $args );
?>


Now we want the subscription to be sent via Ajax, without refreshing the whole page.
Does the newsletter plugin support this?

Comments

Sign In or Register to comment.