Template:Print-Button

From Hauck LabWiki
Revision as of 15:47, 29 May 2025 by ESO wikiadmin (talk | contribs) (Created page with "<div class="print-export-buttons" style="float: right; margin: 10px 0; padding: 10px; border: 1px solid #ddd; background: #f8f9fa; border-radius: 3px;"> <strong>📄 Export:</strong><br> <button onclick="window.print()" style="padding: 5px 10px; margin: 2px; background: #0645ad; color: white; border: none; cursor: pointer; border-radius: 3px;"> 🖨️ Drucken/PDF </button><br> <button onclick="copyContent()" style="padding: 5px 10px; margin: 2px; background:...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<script> function copyContent() {

 const content = document.getElementById('mw-content-text');
 const textContent = content.innerText;
 navigator.clipboard.writeText(textContent).then(function() {
   alert('Seiteninhalt wurde kopiert! Sie kĂśnnen ihn jetzt in Word einfĂźgen.');
 }).catch(function() {
   alert('Kopieren fehlgeschlagen. Bitte manuell mit Strg+A und Strg+C kopieren.');
 });

} </script>