if (typeof($) == 'undefined' && typeof(jQuery) != 'undefined') $ = jQuery; if (typeof($) != 'undefined'){ $(window).load(function(){ $('.partners-table').each(function(){ var table_wrapper = $(this); var table_btn_less = $('tfoot .btn-less', this); var table_btn_more = $('tfoot .btn-more', this); table_btn_more.css('cursor', 'pointer').click(function(){ table_wrapper.find('.default_hidded').show(); table_btn_more.addClass('hidded'); table_btn_less.removeClass('hidded'); }); table_btn_less.css('cursor', 'pointer').click(function(){ table_wrapper.find('.default_hidded').hide(); table_btn_less.addClass('hidded'); table_btn_more.removeClass('hidded'); }); }); }); }