Skip to content

Instantly share code, notes, and snippets.

@neet
Created July 19, 2017 16:57
Show Gist options
  • Save neet/a574fc7468707139fca2011baafca007 to your computer and use it in GitHub Desktop.
Save neet/a574fc7468707139fca2011baafca007 to your computer and use it in GitHub Desktop.
getSelection.js
$(document).on('click','.text', function(e) {
var selObj = window.getSelection();
if ( !selObj.toString() ) {
//選択されていない場合の処理
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment