if(count<1){ alert("You must choose atleast one campaign for which you made sale !!!"); return false; }
I have ONE check box..and on submit of a form, if that check box is Not chekdd then it shld give me "You must choose atleast one campaign for which you made sale !!!" alert.
But problem is even if I check it, I get that message.
But If I have 2 check boxes, it doesnt popup or alert "You must choose atleast one campaign for which you made sale !!!" , whcih is OK and GOOD enough .
if(count<1){ alert("You must choose atleast one campaign for which you made sale !!!"); return false; }
Looks like C++... Out of my element. But you can validate the logic to see where code is failing. Start backwards... substitute (1=1) for (count<1). Does code work??
If yes, substitute (1=1) for (form.SubCampaign[x].checked==true)... Does it work?? Apply this method to discover where code is failing.
And should you have semi-colons at additional places??