<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.unicodeBidi="bidi-override";
}
</script>
</head>
<body>
<p>This is some text.</p>
<p id="p1" style="direction:rtl">This is another text.</p>
<br>
<button type="button" onclick="displayResult()">Override text</button>
</body>
</html>