View previous topic :: View next topic |
Author |
Message |
chaspoll
Joined: 02 Nov 2010 Posts: 5
|
Posted: Fri Jun 22, 2012 6:18 pm Post subject: Please check the Pre-check the check Box |
|
|
When I click the "pre-check the box" option in the form creation area the command is not saved and the box appears on the site as un-checked. Tried several times but this feature seems not to be working today.
Charles |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Mon Jun 25, 2012 11:07 am Post subject: |
|
|
Thank you for the report. I will check into this for our next update. In the mean time, you can fix this issue by manually inserting into the tag for the check box the following parameter:
For example, you would change this bit of code:
Code: |
<input name="q5" id="q5" value="Yes" type="checkbox"> |
To:
Code: |
<input name="q5" id="q5" value="Yes" type="checkbox" checked="checked"> |
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
onthegocasino
Joined: 18 Feb 2009 Posts: 3
|
Posted: Wed Nov 14, 2012 3:06 pm Post subject: Please check the Pre-check the check Box |
|
|
I tried your manual fix and the box still does not show as checked. Here is the code I used:
Add me to your newsletter and Promotional list </label> <input name="q20" id="q20" value="Yes" type="checkbox" checked="checked" > |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Nov 15, 2012 5:07 am Post subject: Re: Please check the Pre-check the check Box |
|
|
msully1001 wrote: |
I tried your manual fix and the box still does not show as checked. Here is the code I used:
Add me to your newsletter and Promotional list </label> <input name="q20" id="q20" value="Yes" type="checkbox" checked="checked" > |
Try changing:
Code: |
<input name="q20" id="q20" value="Yes" type="checkbox" checked="checked" > |
To:
Code: |
<input name="q20" id="q20" value="Yes" type="checkbox" checked="checked" /> |
If that doesn't work, post a link to the code embedded in your site and I will take a look.
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
|