Your operator return falsecancels the action focus:). When the element is focused, you only get the cursor. I will just remove this line from your function.
, .focus() -, , , , CSS :
$("#myTextArea").focus(function() {
$(this).css({ "height": "75px" });
});
saema (focus - ), , , . ( ) , , , :
$("#myTextArea").focus(function(e) {
if($(this).height() == 75) return;
$(this).animate({ height: 75}, "normal", function() {
$(this).blur().trigger(e);
});
});
, , focus .