I have a text field(Quotes Provide) that I want to validate against a drop down field(number of Quotes Required) to be greater than or equal to and show submit if its true.
Current Code not validating but it does show the submit button when populated:
$(document).ready(function() { $('.Submit').hide(); $('#q22 input').on('blur change', function() { if ($('#q22 input').val() >= '#q18 input') { $('.Submit').show(); } else { $('.Submit').hide(); } }); });