mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
19 lines
278 B
HTML
19 lines
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>
|