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.

When i used blur event out of input text field, it include all page, but submit button too. So how to avoid that the blur event do not include submit button?

Here is html code:

<form>
   <input type="text" value="EMAIL ADDRESS_" id="text" />
   <input type="submit" val="" id="submit" />
</form>

and script:

$('form input[type!=submit]').focus(function(){
     $(this).val("");
     });
$('form input[type!=submit]').blur(function(){
     if(this.value==""){
     $(this).val("EMAIL ADDRESS_");
  }
});

I take this code from my previous question, but it doesn't work.Blur event still include submit button

share|improve this question
1  
If all you are doing is updating the placeholder in the text field and if you are using HTML5, you should use the placeholder attribute so specify that text. – jasonmerino Apr 20 '12 at 19:05

2 Answers

up vote 1 down vote accepted

I think instead of avoiding one field from the selection, you should better specify the items to be considered for selection. Otherwise if someone / you, in the futue may add a new element to the form and you may be wondering where this behaviour (of blur and focus) is coming from for the "just now added element" !

$(function(){
 $("form input[type='text']").focus(function(){
       $(this).val("");
     });
 $("form input[type='text']").blur(function(){
     if(this.value==""){
        $(this).val("EMAIL ADDRESS_");
      }
  });
});

Note that you are still targeting all input fields which is of type text. So if possible try to make it more specific by applying a class name to those elements and use that as the selector. Or you may use the id of the element as well.

$("form #yourElemntId").focus(function(){
   //do stuff
});
share|improve this answer
This is the answer that i need, tnx. – user1288338 Apr 20 '12 at 19:14
@user1288338: Glad it helped you. – Shyju Apr 20 '12 at 19:16
I think this solution is good too: var setTimer = { timer: null } $('input,select').blur(function () { setTimer.timer = setTimeout(function () { $('#text').val('text'); }, 200); }); $('input,select').focus(function () { setTimer.timer = setTimeout(function () { $('#text').val(''); }, 200); }); $("#submit").click(function () { clearTimeout(setTimer.timer); //do something }); – user1288338 Apr 21 '12 at 16:53

Your solution is almost good, you are just missing the quotes between submit

$("form input[type!='submit']").focus(function(){
     $(this).val("");
     });
$("form input[type!='submit']").blur(function(){
     if(this.value==""){
     $(this).val("EMAIL ADDRESS_");
  }
});
share|improve this answer
tnx, I appreciate you answer – user1288338 Jun 29 '12 at 13:05

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.