blob: edaba0eb28042c20a5489e3953606786555f4b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<script>
function boom()
{
var het = document.createTextNode(String.fromCharCode(0x05D7)); // hebrew letter het
document.getElementById("s").appendChild(het);
}
</script>
</head>
<body onload="boom();" dir="rtl">
<div><span id="s">A</span><span> </span>B</div>
</body>
</html>
|