Skip to content

Instantly share code, notes, and snippets.

@vereperrot
Created November 27, 2015 07:51
Show Gist options
  • Save vereperrot/69ff39f9027b1a120ed4 to your computer and use it in GitHub Desktop.
Save vereperrot/69ff39f9027b1a120ed4 to your computer and use it in GitHub Desktop.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}
</script>
<body>
<button class="btn btn-link" onclick="alert(getSelectionText());">.btn-link</button>
hksjksii
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment