blob: 30fd521e4ff2ccd308146706ec159c1fd1ccb617 (
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:invalid { 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">
<input required>
</fieldset>
</body>
</html>
|