'keyup textarea' : function(e) {
        while($(e.target).outerHeight() < this.scrollHeight + parseFloat($(e.target).css("borderTopWidth")) + parseFloat($(e.target).css("borderBottomWidth"))) {
            $(e.target).height($(e.target).height()+1);
            console.log($(e.target).height());
        };