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.

Following case: the page is rendered with the following …

<input class="textInput error" id="accountMailaddress" name="user[email]" size="30" type="text" value="some@mailaddress.com">

So I see an input with "some@mailaddress.com" already filled out. If the user changes the text inside of it the value attribute of the input doesn't change in my dom-inspector. So I assume it's possible to test the text that the user just typed against the original value (in the value attribute).

How can I do so?

Thank you in advance.

more info …

e.g. I'm logging $('.textInput').val(); on every keypress, val(); always holds the current text the user enters. Do I just have to store the original value in a variable?

share|improve this question

4 Answers

up vote 2 down vote accepted
$('#accountMailaddress').val() == $('#accountMailaddress')[0].defaultValue

also, defaultValue is cross browser compatible

share|improve this answer
wow nice... thanks for this... +1 – Baz1nga Nov 4 '11 at 11:24

did you mean something like this:

   var defaultText = $('.textInput').val();

   if($('.textInput').val() == defaultText){
      // Email address matched
   }
share|improve this answer

I would think that using the jquery attr method would work, without having to store the default value first. Something like this:

if ($('.textInput').val() == $('.textInput').attr('value'){
   // Email address matched
}
share|improve this answer

well you can do seomthign like this

var previousValue ;
$('.textInput').focus(function () {
previousValue = $(this).val();
})
.change(function () {
if(previousValue==$(this).val())
  //then do something
});

but the above is when the user changes it only once to make it comprehnsive

$('.textInput').focus(function () {
if($(this).data("key")!==undefined)
    $(this).data("key")= $(this).val();
})
.change(function () {
if($(this).data("key")==$(this).val())
  //then do something
});

I really like the defaultValue property too..

share|improve this answer

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.