Verify Emails Before Sending Opt-In Form to Your Autoresponder

December 23rd, 2007

How often prospects submit your form without filling the fields Or enter abracadabra instead of their email address?… You autoresponder certainly rejects this form, but the prospect will see an error message.
Why confuse them when you can prompt to enter a real email before submitting the opt-in form. It’s possible with a simple javascript code.


Suppose you have an opt-in form like below:

<form method="post"
  action="http://yourdomain/autoresponder">
Name: <input name="name">
Email: <input name="email">
<input type="submit">
</form>

You can add onSubmit code into the <form>-tag to verify the name and email with the javascript below:

<script type="text/javascript">
<!--//
function verifyForm(theForm) {
  var nameRE = new RegExp(
    "^\\s*[\\w]+(\\s+[\\w]+)*\\s*$",
    "i");
  var emailRE = new RegExp(
    "^\\s*[\\d\\w\\.]+@[\\d\\w\\.]+\\.[\\w]+\\s*$",
    "i");
  if (theForm) {
    if (theForm["name"]
    && ! nameRE.test(theForm["name"].value)) {
      theForm["name"].focus();
      alert("Please enter your Name");
      return false;
    }
    if (theForm["email"]
    && ! emailRE.test(theForm["email"].value)) {
      theForm["email"].focus();
      alert("Please enter your Email");
      return false;
    }
  }
  return true;
}
//-->
</script>

<form method="post" onSubmit="return verifyForm(this);"
  action="http://yourdomain/autoresponder">
Name: <input name="name">
Email: <input name="email">
<input type="submit">
</form>

Copy the codes on yellow background and paste into your opt-in page. Change the name and email field-names (in red) with the field-names of your real form.

 

by Michel Komarov, © Copyright 2007. iCoder.com

 

Share in social bookmarking:These icons link to social bookmarking sites where readers can share and discover new web pages.  digg del.icio.us BlinkList Reddit NewsVine YahooMyWeb co.mments

Related Articles:

Edit Existent Pop-In Window with the Pop-In-Builder

December 6th, 2007

The Pop-In-Builder allows now to upload existent Pop-In windows and edit them instead of creation a window from zero.
Read the rest of this entry »

Exit Popup is now allowed in the Pop-In-Builder

November 22nd, 2007

You may have used the Pop-In-Builder online application to create unblockable popups for free. Popular Exit Popup feature is now available.

Read the rest of this entry »

How to Customize AutoResponse Plus Thank-you Pages

August 31st, 2007

When someone submit your ARP opt-in form and confirm their subscription they arrive a thank-you page.

The AutoResponse Plus (ARP3) provides you with default subscriber-facing pages in English.

However you’re able to enter your custom pages URL in the ARP settings to redirect people to these pages.
This allows you to use extra information on these pages or use pages in your native language.

Read the rest of this entry »

Overlay windows and images

July 31st, 2007

Pop up windows are still effective ways to get subscribers, especially in niche markets. Creating popups on your website is as easy as pie.

Pop-up windows are great tools to have in your marketing arsenal since they are so effective and inexpensive to implement. Pop-ups can be used to bring attention to sales/promotions, recover abandoned shopping carts, generate leads/email newsletter subscribers and much more.

The common argument you’ll hear executives and designers make is that most people block pop-up windows. But the modern overlay (pop-in) windows are not blocked as they are a part of the web-pages.

The most spectacular and popular scripts are “LightBox” and “GreyBox”.

Read the rest of this entry »

How To Protect your AutoResponse Plus web-form from spam-bots

May 1st, 2007
modified at June 28, 2007

AutoResponse PlusWhen you use AutoResponse Plus you can’t change the form-processing script to incorporate anti-spam features described earlier (How to protect a Contact-Form from Form-Spam bots).
And what now?

Fortunately the AutoResponse Plus (ARP3) supports mandatory fields. So we are able to use some JavaScript tricks to prevent ARP3 accepts forms from spam-bots.

Read the rest of this entry »

Download PDF Instead of Loading into the browser

April 6th, 2007
Download PDF I’ll bet a cookie you’ve seen those instructions on downloading PDF (ebooks) like “Please click this link with the right mouse-button, then select the “Save Target As…” option from the popup menu and save the file in your PC”.
 But why to force your customers to make extra actions if you exactly want they download your PDF?!
Also what to do with all those links inside email messages?..
I would like to set up a download page on my domain in order to give away a free ebook on generating traffic.
I want to use a link to allow users to DOWNLOAD PDF files. But when I set it up the PDF file gets directly loaded into the browser. Is there something I can do to ensure that when people click on the link on a page or in an E-mail message that the PDF file gets immediately downloaded to their disk and not loaded in their browser?
Roger

This article describes 2 ways to let them download PDFs by just clicking a link.
Read the rest of this entry »

How to Split your targeted traffic from different sources

March 31st, 2007

split your trafficTypically, online marketers have utilized standard “Split tests” to try and improve marketing and merchandising approaches. A split test allows a marketer to split traffic across different versions of a web page in an effort to identify topper-forming marketing variables.

During these testing scenarios marketers try to identify promotions that significantly outperform others, while testing titles and headers for the highest level of customer engagement.

Unfortunately these testing method doesn’t consider where are the people going from.

Customers from different sources could have different purposes and behavior. So it would be better to send web-surfers from Google, Yahoo, MSN to one test pages and marketes from WarriorForum, “How To Corp” forum to another test pages.

Read the rest of this entry »

How to Grab Readers Attention with The KeyWords They have Googled

February 9th, 2007

The first-moment objective of your Sales Letter is to grab the reader’s attention. The headline tells him what the sales letter is about. The sub-headline is optional. Sometimes it’s used to expand the headline. A high attractive sub-headline helps to catch the reader’s eye.

Let’s suppose you keep search in Google™ by a keyword. What would you look for at a page opened with a searched link? The KeyWord you entered in the search-line. Right?
Place the reader’s KeyWords in your sub-headline to increase chances of your sales letter to be read.

This post helps you to extract the KeyWords and push it into your page.
Read the rest of this entry »

How to protect a Contact-Form from Form-Spam bots

January 28th, 2007

When you have a Contact-Form on your site, you are having problems with spam submissions to the form. Unfortunately, spammers have programs that find forms on the web, and automatically fill them out with spam messages.

The standard way out is the use of captchas. However, there are bots, that can recognize simple captchas in a second. Let’s review ideas of Form-Spam bots blocking without captchas.

Read the rest of this entry »