Last active
August 29, 2015 14:21
-
-
Save bogomolov-dev/21b4c9a0d921a6b8be51 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var copyBtn = document.querySelector('#copy'); | |
copyBtn.addEventListener('click', function (event) { | |
event.preventDefault(); | |
try { | |
document.querySelector('#code').select(); | |
document.execCommand('copy'); | |
} | |
catch (error) { | |
alert('Sorry, leider konnte nicht kopiert werden.'); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="form-horizontal"> | |
<div class="form-group"> | |
<label for="code" class="col-sm-2 control-label">Code</label> | |
<div class="col-sm-10"> | |
<textarea name="code" id="code" cols="90" rows="5">var code = 'Dieser Code muss kopiert werden.'; | |
console.log(code);</textarea> | |
</div> | |
</div> | |
<div class="form-group"> | |
<div class="col-sm-offset-2 col-sm-10"> | |
<button id="cut" type="submit" class="btn btn-default">Cut</button> | |
<button id="copy" type="submit" class="btn btn-default">Copy</button> | |
</div> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment