html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<textarea onclick="dow()"id="text"placeholder="Write in a error"></textarea><//textarea>
CopyPaste into comment or copypaste error
<br><br><br><br>
<button onclick="e.innerHTML = t.value">Submit</button>
<hr>
<br><br>
<h3 id="error">Error:?</h3>
<br><br>
Please leave a screen shot of it in action. then go to <a href="https://imgbb.com">https://imgbb.com</a>
press the img you upload, hold the img, press copy, go to my display thread and post it.
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
textarea {
height:400px;
width:100%;
text-align: center;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
var t = document.getElementById("text")
var e = document.getElementById("error")
function dow() {
t.value = "ERROR:"
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run