
PK 
| ADDRLIN : /home/anibklip/pcfcindia.com/bkp2023-24/js/ |
| Current File : /home/anibklip/pcfcindia.com/bkp2023-24/js/jquery.disableSelection.js |
jQuery.fn.extend({
disableSelection : function() {
return this.each(function() {
this.onselectstart = function() { return false; };
this.unselectable = "on";
jQuery(this).css('user-select', 'none');
jQuery(this).css('-o-user-select', 'none');
jQuery(this).css('-moz-user-select', 'none');
jQuery(this).css('-khtml-user-select', 'none');
jQuery(this).css('-webkit-user-select', 'none');
});
}
}); 
