1234567891011121314151617 |
- /*=========================================================================================
- File Name: copy-to-clipboard.js
- Description: Copy to clipboard
- --------------------------------------------------------------------------------------
- Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
- Author: PIXINVENT
- Author URL: http://www.themeforest.net/user/pixinvent
- ==========================================================================================*/
- var userText = $("#copy-to-clipboard-input");
- var btnCopy = $("#btn-copy");
- // copy text on click
- btnCopy.on("click", function () {
- userText.select();
- document.execCommand("copy");
- })
|