Announcement

Collapse
No announcement yet.

tickboxes with 'required' are not working

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    tickboxes with 'required' are not working

    my tickboxes with 'required' are not working if you do not tick you are possible to go futher, any one who can help me with that?

    #2
    Which ones are those? In Design prompts, make sure they have the required field ticked.

    Otheriwse, as an alternative:

    I usually attach javascript validation to my T&C's: In Act_Order01.html:

    <input.....NETQUOTEVAR:NEXTBUTTON" onclick="return check()">


    <script>
    function check() {

    if (document.forms[0].INVOICEPRIVACY.checked == false) {
    alert('Fill in the form properly!');
    return false;
    }
    </script>

    Hope this helps. I used INVOICEPRIVACY as an example, you could use other checkbox values.
    http://www.johnsons-seeds.com - Actinic plugins, remote add to cart and custom CMS
    http://www.dtbrownseeds.co.uk - More seeds and plants....
    http://www.mr-fothergills.co.uk - Well it used to be Actinic...

    Comment

    Working...
    X