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 have this when the page loads

<input class="input" id="accountNameUsernameForm_name" name="profile[real_name]" size="30" type="text" value="George">

When a submit trigger is pressed I want to check if the current text in the input field is the same as it's value attribute?

if ( $('.input').val() != $('.input').attr('value') ) {
        $(this).addClass('formLoading');
}

However the problem is, val() and the attr('value') are always the same. What function retrieves the current text that is in the input right now without looking at its value attribute?

thank you

btw. it doesn't work with text()!

share|improve this question

6 Answers

up vote 3 down vote accepted
// save the default value on page load
var defaultUsername = $('.input').val();

// on submit, compare
if ( $('.input').val() != defaultUsername ) {
        $(this).addClass('formLoading');
}
share|improve this answer
+1, I totally didn't spopt that as the issue. Also worth mentioning that $('.input') will return everything with the class input so you can't guarantee that the input you are looking is the one you want. use the following instead: $("#accountNameUsernameForm_name") – James Wiseman Jul 15 '11 at 8:56
@James Wiseman: Totally agree, just gave a context answer based on his code. – Shef Jul 15 '11 at 9:06

use id of input instead input and then try this..

inputValue = $("#accountNameUsernameForm_name").val()

and then in your form handler try this..

inputText =  $("#accountNameUsernameForm_name").attr('value') 

    if(inputValue ! = inputText ){
        $(this).addClass('formLoading');

}
share|improve this answer
$('.input').val() is equal to  $('.input').attr('value') always.

I suggest you include a hiddenfield or save the value in a variable

See example: http://jsfiddle.net/r3KZu/6/

share|improve this answer

The problem is that the value attribute is also updated as the text is changed. On page load, you should store the initial value as a variable, and then check against that in the callback.

share|improve this answer

Have a crack at this:

$('.input').each(function() {
    if($(this).val() != this.defaultValue) {
        $(this).addClass('formLoading');
    }
});
share|improve this answer

Use the defaultValue property.

$('.input')[0].defaultValue

The defaultValue property sets or returns the default value of a text field, specified in the value attribute.

Sometimes people forget jQuery is just JavaScript, simple things should be done the easy way.

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.