Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've set up a jsFiddle here, code below.

I just have a textarea that gets a class added to it on focus and on blur it gets removed. The class makes the textarea extend by setting a height css attribute, so when you click the button to submit the form I don't want it to remove the class because it just seems awkward.

HTML

<div class="comment_display">
    <form>
        <textarea class="addcomment"></textarea>
        <input class="tagbtn" type="submit" value="Comment" />
    </form>            
</div>​

CSS

.addcommentOn {
    height: 100px;
}​

Javascript

// Lengthen the Discussion input on click
  $(function lengthenInput() {
    $(".addcomment").focus(function() {
        $(this).addClass("addcommentOn");
    });

    $(".addcomment").blur(function() {
        if ($("input.comment").data('clicked') != true) {
            $(this).removeClass("addcommentOn");
        }
    });
  });​
share|improve this question
If the user blurs out of the field for any other reason (than to click the submit button), you still want to remove the class, yes? – BenM Dec 16 '12 at 23:58
Yes. The only reason the class should NOT be removed is if the user clicks the button. – Trevan Hetzel Dec 17 '12 at 0:00

1 Answer

up vote 1 down vote accepted

Trying to fight with blur is not easy since it occurs prior to any mouse event on another element

Here's one concept that would need additional modification if you want the textarea to shrink when user leaves form. Replace blur handler with following:

$('form').on('click', function(evt) {
    var $tgt = $(evt.target);
     if ($tgt.is('input[type="submit"]') || $tgt.is('.addcommentOn')  ) {
          return;
      }else{
           $('.addcommentOn').not($tgt).removeClass("addcommentOn");
      }
})

EDIT: need to also modify focus handler a bit once more elements added to form:

 $(".addcomment").focus(function() {
    $('.addcommentOn').removeClass('addcommentOn');
    $(this).addClass("addcommentOn");

});

DEMO(updated): http://jsfiddle.net/GzmrS/38/

share|improve this answer
That works great! Definitely wouldn't have come up with that solution, but thank you very much for the help. I'm trying to go through it now and piece together how it works now. And also I changed 'form' to 'body' and it works just how I hoped it would. – Trevan Hetzel Dec 17 '12 at 1:04
ws going to suggest click on body also, likely will take care of most scenarios you would need to shrink the element – charlietfl Dec 17 '12 at 1:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.