Hello,
I'm using JS V1 version.
How can I use jQuery Validation method?
The Validation not work with hidden input.
This is my code
<div id="radioBtn" class="btn-group pull-right radio-group">
SI
NO
<input type="hidden" name="disp_mattina" id="disp_mattina">
</div>
Luca Lo Bascio () - 7 years ago - Reply 0
Try capture element with this Jquery Code:
$('input[type=hidden][name=disp_mattina]').on('change',function(){
// Your validate method here.
// Get value of this element:
// $(this).val();
});
Daniel Ikeda () - 7 years ago - Reply 0