Get an array of forms in java script using prototype
Posted
by Saurabh
on Stack Overflow
See other posts from Stack Overflow
or by Saurabh
Published on 2010-05-27T17:22:48Z
Indexed on
2010/05/27
17:31 UTC
Read the original article
Hit count: 140
My document contains more than one forms. How can I get an array of all forms using prototype?
<html>
<head></head>
<body>
<form id="form1">
<!-- Other stuffs here -->
</form>
<form id="form2">
<!-- Other stuffs here -->
</form>
<form id="form3">
<!-- Other stuffs here -->
</form>
</body>
</html>
© Stack Overflow or respective owner