blob: 4d99ac06e24e06bd46588d0e77b7848cbc813cef (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<body>
<input type="checkbox">
<script>
var i = document.getElementsByTagName("input")[0];
i.value = "abcdef";
i.type = "text";
</script>
</body>
</html>
|