how to check all required fileds have values in jquery on submit
is dere way to check that all the required fields on page are fullfilled
Below is my code:
plz suggets
thnx
<div id="StructureView" runat="server" >
<h2 class="lblStructureR">Structure</h2>
<asp:Label ID="lbl1" runat="server" Text="Surface we are building on ?"></asp:Label>
<div class="divOptions">
<asp:RadioButtonList ID="cblOptionsRadio0" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Selected="True" Value="Grass" >Grass</asp:ListItem>
<asp:ListItem Value="SoftSand">Soft Sand</asp:ListItem>
<asp:ListItem Value="Compact Sand">Compact Sand</asp:ListItem>
<asp:ListItem Value="Interlock"> Interlock</asp:ListItem>
</asp:RadioButtonList>
</div>
<p>
<label for="ctl00_PageContent_wrd2" class="W2 W">
How many people do you need to accomodate?
</label>
<asp:TextBox ID="wrd2" CssClass="TxbBorder" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RFVwrd22" runat="server" ControlToValidate="wrd2"
SetFocusOnError="true" ErrorMessage="*"></asp:RequiredFieldValidator>
</p>
<div>
<asp:Label ID="lbl2" runat="server" Text="What set up will be inside the tent ?"></asp:Label>
<asp:RadioButtonList ID="cblOptionsRadio1" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="Lounge" Selected="True">Lounge</asp:ListItem>
<asp:ListItem Value="Cocktail Reception">Cocktail Reception</asp:ListItem>
<asp:ListItem Value="Plated Dinner">Plated Dinner</asp:ListItem>
<asp:ListItem Value="Dinner Dance<">Dinner Dance
</asp:ListItem>
</asp:RadioButtonList>
</div>