Using jQuery, I change the value of an input text field through some process. After the process is done, I need to capture this change and apply it to another process. My problem is that I can't seem to capture this change and assign it to a variable. I know the changes are happening because the DOM is getting updated. Furthermore, this variable assignment works in IE, but not for the other browsers I tested.

Below is a snippet to prove my point (and you can see this online here: http://jsfiddle.net/xMwAE/).

<form>
    <input type="hidden" name="my_hidden" value="Hidden Field" />
    <input type="text"   name="my_text"   value="Text Field"   />
</form>


$().ready(function() {
    $('input[name=my_hidden]').val('Hello Hidden Field');
    $('input[name=my_text]').val('Hello Text Field');

    // Display
    var temp = $('form').html();

    // Though the DOM is updated with the new values. The variable temp
    // does not capture the changes to the input text field, but captures
    // the change in the hidden field. When in IE, temp captures the 
    // changes in both fields.
    alert(temp);
});

Obviously, I need consistent behavior across browsers. Any ideas what's going on?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I don't get any trusted idea what happens, but somehow there should be a difference between setting the value as a member (input.value) or setting the value as a attribute-node.

This works for me :

$('input[name=my_text]').each(function()           
{ this.setAttribute('value','Hello Text Field');});

I guess its a bug in innerHTML, see bugzilla: https://bugzilla.mozilla.org/show_bug.cgi?id=535992

link|improve this answer
you are a genius! seems to work, have been struggling with it for few days now. so i have to use setAttribute cool! thanx a lot! beer? lol – Aman Nov 12 '10 at 16:06
Beer sounds good ^^ – Dr.Molle Nov 13 '10 at 14:51
feedback

Alternatively, you can store the values of your fields into array and use however you like like this:

var data = [];
$('form :input').each(function(){
  data.push(this.value);
});

Now you can check for values like this:

alert(data[0]);
alert(data[1]);
link|improve this answer
I'm also interested in the surrounding markup. Do you know why this works only for hidden fields? – Aman Nov 12 '10 at 7:16
@AMan: That works for all input fields not just hidden fields. If you want to make it work only for hidden fields, you should use $('form :hidden') instead. – Sarfraz Nov 12 '10 at 7:24
no what i meant was i want html structure to be store in a javascript variable along with it's new value. Problem is this doesn't work for other fields other than hidden – Aman Nov 12 '10 at 7:31
feedback

Your Answer

 
or
required, but never shown

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