dolcevia Hi. Yes I did. The issue looks to be related with this script:
jQuery(document).ready(function($){
jQuery(document).on('copy', function(e)
{
var sel = window.getSelection();
var copyFooter =
'<br /><br /> Dolcevia.com: <a href="' + document.location.href + '">' + document.location.href + '</a><br /><a href="' + document.location.href + '">Reisadvies Valle d'Aosta</a><br />© Dolcevia.com';
var copyHolder = $('<div>', {html: sel+copyFooter, style: {position: 'absolute', left: '-99999px'}});
$('body').append(copyHolder);
sel.selectAllChildren( copyHolder[0] );
window.setTimeout(function() {
copyHolder.remove();
},0);
});
});
this looks to be custom made. Can You please remove it for another test. Just to see if I'm right.