fazlurr
8/11/2015 - 8:15 AM

Copy to Clipboard Function - http://stackoverflow.com/a/30810322

Copy to Clipboard Function - http://stackoverflow.com/a/30810322

var copyMergeWordsResultBtn = document.getElementById('button-copy-merge-words-result');

copyMergeWordsResultBtn.addEventListener('click', function (event) {
	var mergeWordsResultTextarea = document.getElementById('merge-words-result');
	mergeWordsResultTextarea.select();

	try {
		var successful = document.execCommand('copy');
		var msg = successful ? 'successful' : 'unsuccessful';
		console.log('Copying text command was ' + msg);
	} catch (err) {
		console.log('Oops, unable to copy');
	}
});