I want to hide only those select box which has a null value selected. I have following HTML and jQuery
$(document).ready(function () { $('.date-month').each(function() { if ($(this).val()=='') $(this).hide(); }); });
select Jan Feb Mar Apr May Jun Jul Aug select Jan Feb Mar Apr May Jun Jul Aug