1 2 3 4 5 6 7 8 9
this.element().on('change', '.combobox_number_rooms_nis', function () { var value = $(this).val(); if (value == 7) { $('.container_7', $(this).element()).show(); } else { $('.container_7', $(this).element()).hide(); } });