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