copy-to-clipboard.js 705 B

1234567891011121314151617
  1. /*=========================================================================================
  2. File Name: copy-to-clipboard.js
  3. Description: Copy to clipboard
  4. --------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. var userText = $("#copy-to-clipboard-input");
  10. var btnCopy = $("#btn-copy");
  11. // copy text on click
  12. btnCopy.on("click", function () {
  13. userText.select();
  14. document.execCommand("copy");
  15. })