/** mise en place du copyright **/
$(document).ready(function(){
$(document).on('copy',function(){
body=document.getElementsByTagName('body')[0];
selection=getSelection();
copyright=selection+"
© Le Télégramme - Plus d’information sur "+location.href;
copyElm=document.createElement('div');
body.appendChild(copyElm);
//copyElm.style.display='none';
copyElm.innerHTML=copyright;
selection.selectAllChildren(copyElm);
copyElm.style.left='-99999px';
setTimeout(function(){body.removeChild(copyElm)},0)
});
$(document).on('cut',function(){
$(document).trigger('copy');
});
});