danielebarchiesi@2: (function ($) { danielebarchiesi@2: danielebarchiesi@2: Drupal.quicktabsShowHide = function() { danielebarchiesi@2: $(this).parents('tr').find('div.qt-tab-' + this.value + '-options-form').show().siblings('div.qt-tab-options-form').hide(); danielebarchiesi@2: }; danielebarchiesi@2: danielebarchiesi@2: Drupal.behaviors.quicktabsform = { danielebarchiesi@2: attach: function (context, settings) { danielebarchiesi@2: $('#quicktabs-form tr').once(function(){ danielebarchiesi@2: var currentRow = $(this); danielebarchiesi@2: currentRow.find('div.form-item :input[name*="type"]').bind('click', Drupal.quicktabsShowHide); danielebarchiesi@2: $(':input[name*="type"]:checked', this).trigger('click'); danielebarchiesi@2: }) danielebarchiesi@2: } danielebarchiesi@2: }; danielebarchiesi@2: danielebarchiesi@2: })(jQuery);