jQuery(document).ready(function($) { $('#tax_exempt_id_field').hide(); $('#tax_exempt_checkbox').on('click', function (event) { $('#tax_exempt_id_field').slideDown('slow'); }); }); jQuery(document).ready(function($) { // Target the tax-exempt-id input box var $taxExemptId = $('.tax-exempt-id'); // Listen for input event on the input box $taxExemptId.on('input', function() { var code = $(this).val(); // Check if the code doesn't match 123456 if (code !== '123456') { $taxExemptId.addClass('invalid-input'); } else { $taxExemptId.removeClass('invalid-input'); } }); });