Adding listbaby Form to Wordpress
From ListBaby Wiki
This Assumes you have a current version of Wordpress with widgets sidebar enabled.
1) Log into your Wordpress Admin panel: (http://yourdomain.com/wp-admin)
Under Appearance, choose Widgets.
2) Drag the TEXT widget to the sidebar at the right.
3) Expand the widget by clicking on the header and name the widget something like "Join our email list". Then copy the code below and paste in the content area of the widget.
<script type="text/javascript">
function openTarget (form, features, windowName) {
if (!windowName) windowName = 'formTarget' + (new Date().getTime());
form.target = windowName;
open ('', windowName, features);
}
</script>
<form onsubmit="openTarget(this,'width=340,height=400,resizable=1,scrollbars=1');return true;"
action="thankyou.php" method="post" target="newpopup">
<input type="text" name="list_email" value="your@email"
onfocus="if(this.value=='your@email')this.value='';" />
<input type="submit" value="Submit" />
</form>
and click 'SAVE'
4) Now download this file and upload it to your /web folder. Or if you're a Wizard user, email us and let us know you need "thankyou.php" for your Wordpress.
Wala!


