зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
278 B
HTML
19 строки
278 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var input = document.getElementById("i");
|
||
|
input.setAttribute('type', "image");
|
||
|
input.removeAttribute('type');
|
||
|
input.placeholder = "Y";
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();"><input id="i" /></body>
|
||
|
</html>
|