// $Id$ // Content type form Drupal.behaviors.og_content_type = function() { // Disable the group limit textarea if the content type is not a standard group post $('input[name="og_content_type_usage"]').click(function(){ if (!$('#edit-og-content-type-usage-group-post-standard').attr('checked')) { $('#edit-og-max-groups').attr('disabled','disabled'); } else { $('#edit-og-max-groups').removeAttr('disabled'); } }); // Initial check to see if content type is standard group post if (!$('#edit-og-content-type-usage-group-post-standard').attr('checked')) { $('#edit-og-max-groups').attr('disabled','disabled'); }; }