So I have this new lead capture page I setup today and I'm trying to get it to work with getresponse. After messing around with the code this is what I have so far:
As always thanks for the help.
For some reason though whenever I test this I get an error from getresponse telling me that I entered an invalid email address so clearly my above code isn't submitting what I'm typing in the field.<div id="form">
<form action="https://app.getresponse.com/add_contact_webform.html" method="post">
<input type="text" id="email" value="Enter a Valid Email Here" onfocus="if(this.value=='Enter a Valid Email Here') this.value='';" onblur="if(this.value=='') this.value='Enter a Valid Email Here';">
<input type="image" id="submit" value="296610" src="http://www.mywebsite.com/submitbuttonimage.jpg"/>
<input type="hidden" name="webform_id" value="296610" />
<div class="clear"></form>
As always thanks for the help.