﻿// создаём плагин maxlength
jQuery.fn.unselected = function() {
    return this.each(function() {
        $(this).bind("selectstart mousedown", function() {
            return false;
        });
    });
};
