top of page
Search

Text Copy To Clipboard With Input Element - Velo by Wix

  • Writer: eggwebtut
    eggwebtut
  • Mar 26, 2021
  • 1 min read

Page Code:

import wixWindow from 'wix-window'; $w.onReady(()=>{ $w("#copyButton").onClick(()=>{ let textMessage = $w("#textInput").value; wixWindow.copyToClipboard(textMessage) .then(()=>{ $w("#copyButton").disable(); $w("#copyButton").label = 'Copied!'; }) }) })

 
 
 

Recent Posts

See All

コメント


bottom of page