blob: a4a938494b94108f765daa5ea710150c3392ab02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<body onload="init()">
<textarea>blahblahblah</textarea>
<script>
function init() {
document.body.setAttribute("spellcheck", "false");
}
</script>
</body>
</html>
|