How to improve the conversion rate of your optin forms...

1 replies
You can significantly improve the conversion rate of your optin forms
by automatically positioning the cursor in the first form field when
the page loads.

To do this, replace this line (in the source code of the squeeze page):

Code:
<body>
by this one:

Code:
<body onload="document.getElementById('field1').focus()">
The first field of the form must have an id attribute correctly completed:

Code:
<input name="first_name" id="field1" type="text" />
#conversion #forms #improve #optin #rate

Trending Topics