Bonjour,
J'ai une page avec du texte normal dessus et j'aimerais copier la sélection dans le press papier et si possible automatiquement
Actuellemnt j'arrive à copier toute le contenu de la page
voici ma page web
pour tester je fait le copier qd je resize la page
Avez-vous ue idée.
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nouvelle page 1</title>
<body onresize=copy2Clipboard(document.body)>
</head>
<SCRIPT>
function copy2Clipboard(obj)
{
var textRange = document.body.createTextRange();
textRange.moveToElementText(obj);
textRange.execCommand("Copy");
}
</SCRIPT>
<body>
<p>première ligne</p>
<p>deuxième ligne</p>
<p>dernière ligne</p>
</body>
</html>