Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(document).ready(function(){
- jQuery('.tshowcase-box-table tr').each(function(){
- var row = jQuery(this);
- // add line breaks to school list
- row.find('.tshowcase-table-groups').each(function(){
- var newline = jQuery(this).html();
- jQuery(this).html(newline.split(',').join('<br>'));
- });
- // move credentials to name/title
- var spancontainer = jQuery('<span></span>').append(row.find('td > a')).append(row.find('.tshowcase-single-credentials'));
- //row.find('td > a').appendTo(spancontainer);
- //row.find('.tshowcase-single-credentials').appendTo(spancontainer);
- spancontainer.appendTo(row.find('.tshowcase-table-image'));
- //delete 2nd and 5th column
- row.find("td:nth-child(2)").remove();
- row.find("th:nth-child(2)").remove();
- row.find("td:nth-child(4)").remove();
- row.find("th:nth-child(4)").remove();
- });
- jQuery('.tshowcase-box-table th').first().html('Social Workers');
- jQuery('.tshowcase-box-table').fadeTo('fast',1);
- });
Add Comment
Please, Sign In to add comment