html form.input.value is not getting printed why ?
- by chandu
function printvalues() {
document.write("This is my first JavaScript!");
document.write(form.inputobj1.value);
document.write(form.inputobj2.value);
}
why this line is not printing the value document.write(form.inputobj1.value);