Files
CoreGrade/www/assets2/js/scripts/extensions/copy-to-clipboard.js
T
2020-01-24 17:53:26 -05:00

18 lines
688 B
JavaScript

/*=========================================================================================
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");
})