Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

118
Vistas
execCommand() deprecated, copy table solution

I had some trouble finding a solution to copying a full table as exexCommand is deprecated and the Clipboard API only takes a string.

I found a mix of different solutions which didn't quite make it work for me.

My solution is this:

const tableRef = useRef<HTMLTableElement>(null);


const copyToClipboard = () => {
  if (tableRef.current && window.getSelection) {
    const selection = window.getSelection();
    selection?.selectAllChildren(tableRef.current);
    navigator.clipboard.writeText(selection!.toString());
    selection?.removeAllRanges();
  }
};


<table ref={tableRef}></table>

Hope this will be of some help to someone.

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda