roc / jquery-deselect

A quick plugin to disable text (& etc) selection in a cross-browser way. Use sparingly.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jquery-deselect

A quick plugin to disable text (& etc) selection in a cross-browser way. Use sparingly.

Example Usage

// Contrived pseudo example

var $body = $('body');
$('.myDraggablePopUpWindowOrSimilarUIElement').on('dragging',function(){
    $body.disableSelection();
}).on('finishedDragging',function(){
    $body.enableSelection();
});

About

A quick plugin to disable text (& etc) selection in a cross-browser way. Use sparingly.


Languages

Language:JavaScript 100.0%