﻿(function ($) {
    $.fn.disableTextSelect = function () {
        return this.each(function () {
            if ($.browser.mozilla) {//Firefox
                $(this).css('MozUserSelect', 'none');
            } else if ($.browser.msie) {//IE
                $(this).bind('selectstart', function () { return false; });
            } else {//Opera, etc.
                $(this).mousedown(function () { $(this).select(); return false; });
            }
        });
    }
    $.fn.enableTextSelect = function () {
        return this.each(function () {
            if ($.browser.mozilla) {//Firefox
                $(this).css('MozUserSelect', 'none');
            } else if ($.browser.msie) {//IE
                $(this).bind('selectstart', function () { return true; });
            } else {//Opera, etc.
                $(this).mousedown(function () { $(this).select(); return true; });
            }
        });
    }

})(jQuery); 
