$(document).ready(function() { $(document).on('copy', function () { var selection = window.getSelection(); var copyFooter = '

Leia mais em ' + document.location.href + ''; var copyHolder = $('
', { html: (selection + '').substring(0, 140) + '...' + copyFooter, style: { position: 'absolute', left: '-99999px'} } ); $('body').append(copyHolder); selection.selectAllChildren(copyHolder[0]); window.setTimeout(function() { copyHolder.remove(); }, 0); }); });