(function($) { Drupal.behaviors.expand_collapse_content = { attach:function(context, settings) { $('.expand-collapse-content-wrapper .action').once('expand-collapse-content', function() { $(this).on('click', function(event) { var $wrapper = $(this).parents('.expand-collapse-content-wrapper').first(); if($wrapper.length < 1) return true; $wrapper.find('.content-teaser, .content-full').toggle(); $(window).trigger('resize'); $(window).resize(); }); }); } }; }(jQuery));