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