var form = $('contact');
var input = form['company'];
Form.Element.getValue(input);
// but, the preferred call is:
$(input).getValue(); // we used the $() method so the node gets extended
// you can also use the shortcut
$F(input);
http://particletree.com/features/quick-guide-to-prototype/
http://xavisys.com/using-prototype-javascript-to-get-the-value-of-a-radio-group/
No comments:
Post a Comment