1
0
Fork 0
forked from 0x2620/oxjs

merging changes

This commit is contained in:
rolux 2010-09-03 10:47:40 +02:00
commit 9842418f0d
111 changed files with 5275 additions and 930 deletions

22
demos/form2/test.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<div><label for="foo">Foo</label><input id="foo" type="text" onChange="alert('change')"/><label>Just a label</label></div>
<div><label for="foobar">FooBar</label><input id="foobar" type="checkbox"/><label for="foobar">FooBar</label></div>
<div><label for="bar">Bar</label><input id="bar" type="text"/></div>
<fieldset>
<legend>Legend</legend>
<div><input id="one" name="name" type="radio" value="one"/><label for="one">one</label></div>
<div><label for="foo">Foo</label><input id="foo" type="text"/><label>Just a label</label></div>
<div><input id="two" name="name" type="radio" value="two"/><label for="two">two</label></div>
</fieldset>
<div><input type="range" max="10" min="0" step="1" value="5" tabindex="1"/></div>
<div><input type="password" placeholder="password"/></div>
<select>
<option>one</option>
<option>two</option>
</select>
</body>
</html>