jQuery(function ($) { $('.toClip').on('mousedown', function (e) { e.preventDefault(); const t = $(this).data('clipboard-text') ?? $(this).text(); navigator.clipboard.writeText(t).then(() => { barre_inserer(t); const html = `✔ copiĆ©`; $(this).append(html); setTimeout(() => { $(this).children('.copierOk').remove(); }, 1000); }); }); });