i'm trying to get the value of 2 textboxes with Javascript.
textbox 1, nothing wrong.
textbox 2, same code, there happends nothing!!!!!!
here is the code
var fieldname;
fieldname = document.getElementById("div"+field).getAttribute("field");
alert(fieldname); // RETURNS "Birthdate"
var textval;
textval = document.getElementById("textfield"+field).value;
alert(textval); // RETURNS NOTHING
var field is the id of the textbox and div.
Why isn't this working???