To do validation for the textbox , radio button and dropdown using jquery

JavaScript
•	Here input[name='Gender'] is radio button control name 

if ($('#txtName').val() == "" || $('#txtSalary').val() == "" || 
    $("input[name='Gender']:checked").length == 0 ||
     $('#ddlState option:selected').val() == "")

Source

Also in JavaScript: