Say I have a form with several inputs, is there an easy way to cherry pick the values out the form?
This of course does not work:
function cherryPick( myform ) {
var val = formContents(myform).somename; //get value of specified
input name
}
thanks
