Friends

This code gets the name but not the value.  editFields[i] is an INPUT
node.


var name = getNodeAttribute(editFields[i], 'name');
var value = getNodeAttribute(editFields[i], 'value');
editData.names.push(name);
editData.values.push(value);

var value = editFields[i].value  fixes it.  What am I doing wrong?  The
value attribute should be available with getNodeAttribute(..) surly?

confused
Worik

Reply via email to