to do validation for the textbox 2c radio button and dropdown using jquery

Solutions on MaxInterview for to do validation for the textbox 2c radio button and dropdown using jquery by the best coders in the world

showing results for - "to do validation for the textbox 2c radio button and dropdown using jquery"
Kais
03 May 2017
1•	Here input[name='Gender'] is radio button control name 
2
3if ($('#txtName').val() == "" || $('#txtSalary').val() == "" || 
4    $("input[name='Gender']:checked").length == 0 ||
5     $('#ddlState option:selected').val() == "")
6