Code Snippet not working May 08, 2020, 05:44:33 PM trying to hide this field when clicked.but it won't work.I just create a simple function to check whether it will work or not.it is a radio selection, choosing 'Y' or 'N' only$('#ctrl-hof').on('click', function(){ $(this).hide(); });Thanks. Quote Selected
Re: Code Snippet not working Reply #1 – May 08, 2020, 06:29:27 PM it is okay now.I got a sample from Mr. Willvin$('input[type=radio]').change(function () { if ($(this).val() == 'N') { $('#ctrl-fgno').hide(); } else { $('#ctrl-fgno').show(); }});Thanks again Mr. Willvin Quote Selected