State of De-selection Affairs 2014
I did some research of my own. Here's the function I wrote and am using these days:
(function deselect(){
var selection = ('getSelection' in window)
? window.getSelection()
: ('selection' in document)
? document.selection
: null;
if ('removeAllRanges' in selection) selection.removeAllRanges();
else if ('empty' in selection) selection.empty();
})();
Basically, getSelection().removeAllRanges()
is currently supported by all modern browsers (including IE9+). This is clearly the correct method moving forward.
Compatibility issues accounted for:
- Old versions of Chrome and Safari used
getSelection().empty()
- IE8 and below used
document.selection.empty()
Update
It's probably a good idea to wrap up this selection functionality for re-use.
function ScSelection(){
var sel=this;
var selection = sel.selection =
'getSelection' in window
? window.getSelection()
: 'selection' in document
? document.selection
: null;
sel.deselect = function(){
if ('removeAllRanges' in selection) selection.removeAllRanges();
else if ('empty' in selection) selection.empty();
return sel; // chainable :)
};
sel.getParentElement = function(){
if ('anchorNode' in selection) return selection.anchorNode.parentElement;
else return selection.createRange().parentElement();
};
}
// use it
var sel = new ScSelection;
var $parentSection = $(sel.getParentElement()).closest('section');
sel.deselect();
I've made this a community wiki so that you people can add functionality to this, or update things as the standards evolve.