Skip to content

Instantly share code, notes, and snippets.

@garryyao
Created February 21, 2012 07:11
Show Gist options
  • Save garryyao/1874604 to your computer and use it in GitHub Desktop.
Save garryyao/1874604 to your computer and use it in GitHub Desktop.
Check text selection is caret
function checkCaretSelection( sel )
{
var ranges = sel.getRanges();
return ranges.length == 1 && ranges[ 0 ].collapsed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment