This question already has an answer here:
- File upload validation(jquery) 1 answer
i have a field with display:none property.Its like,when the user clicks on "yes" radio button then the file upload field will appear and validation takes place for file upload also.In this case,I used ignore[] to make that validation work but what happens is,even if i click no,then validation for file upload is happening.
here is my code
<li >
<p>
<label for="rad">radio label:
</label><br>
<input type="radio" name="rad" value="yes" style="width:20px"> Yes </input>
<input type="radio" name="rad" value="no" style="width:20px"> No</input><br/>
<label for="rad" class="error" style="display:none">This field is required</label>
</p>
<p>
<input type="file" name="fupl" style="display:none;margin-top:10px" id="fup"/>
<label for="fupl" class="error" style="display:none;color:red">This field is required</label>
</p>
</li>
<br>
<li>
<label>checkbox label
</label><br><br>
<input type="checkbox" name="cb" value="tick" style="width:20px"> <small>checkbox field<small></input>
<br>
<label for="fee" class="error" style="display:none">This field is required</label>
</li>
<br>
<li>
<input type="submit" class="button" value="SUBMIT" style="float:right"/>
</li>
<script>
$(document).ready(function()
{
$("input[type='radio']").change(function(){
if($(this).val()=="yes")
{
$("#fup").show();
}
else
{
$("#fup").hide();
}
});
});
</script>
this is my jquery
$('#form').validate({
ignore :[],
rules: {
fupl: {
required: true,
accept:'docx|doc'
},
cb:
{
required:true
}
}
});

ignore: []option. Then I added code to hide the error when the field becomes hidden: jsfiddle.net/y5ghU/4 – Sparky Mar 1 at 17:23