jQuery(function($){ $('.divTable').each(function() { $('.divTableCell.infoblock_ticket').each(function(){ $(this).replaceWith(''+$(this).html()+''); }); $('.divTableCell.contentblock_ticket').each(function(){ $(this).replaceWith(''+$(this).html()+''); }); $('.divTableRow').each(function(){ $(this).replaceWith(''+$(this).html()+''); }); $('.divTableBody').each(function(){ $(this).replaceWith(''+$(this).html()+''); }); $('.divTable').each(function(){ $(this).replaceWith(''+$(this).html()+'
'); }); }); $('.message').each(function() { $(this).contents().wrapAll(""); $(this).contents().unwrap(); }); });