blob: 87b6f98d78ef4fd509ae39fcdacdc86636e711e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
document.getElementById("div").focus();
document.execCommand("bold", false, null);
}
</script>
</head>
<body onload="boom();">
<div id="div" style="position: absolute" contenteditable="true"></div>
</body>
</html>
|