Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #6900: testserialize.html

File testserialize.html, 382 bytes (added by remvee, 2 years ago)

test html

Line 
1 <html>
2   <head>
3     <title>Test Form.serialize() checkbox-hidden</title>
4     <script type="text/javascript" src="prototype.js"></script>
5   </head>
6   <body>
7     <form onsubmit="alert(Form.serialize(this));return false">
8       <input type="checkbox" name="foo" value="1" />
9       <input type="hidden" name="foo" value="0" />
10       <input type="submit"/>
11     </form>
12   </body>
13 </html>