blob: 3c1e8a3f9b4a571848b87f642e1bd66940e3c473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<!-- fieldset with one valid element and you dynamically add a barred constraint
validation element -->
<html>
<head>
<style>
fieldset:valid { display:none }
</style>
<script>
function onLoadHandler()
{
document.getElementById("fieldset").appendChild(document.getElementById('i'));
document.documentElement.className='';
}
</script>
</head>
<body onload='onLoadHandler();'>
<input id='i' value='foo' readonly>
<fieldset id="fieldset" id="fieldset">
<input id='j' value='bar' required>
</fieldset>
</body>
</html>
|