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
placeholderattribute so specify that text. – jasonmerino Apr 20 '12 at 19:05