Hi,
I use feedburner for subscribers to receive new posts and I want to redirect them to certain page after they have submitted their email. Is this possible?
I've tryed to include feedburner's code inside an Html field within GF but I get two "submit" buttons and neither one works. This is FB's code:
<form id="subscribe" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open( 'http://feedburner.google.com/fb/a/mailverify?uri=myuri', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<input type="text" value="@" id="subbox" onfocus="if ( this.value == '@') { this.value = ''; }" onblur="if ( this.value == '' ) { this.value = '@'; }" name="email" />
<input type="hidden" value="username" name="uri"/>
<input type="hidden" name="loc" value="en"/>
<input type="submit" value="Submit" id="subbutton" />
</form>