JavaScript DHTML/Document/Text Direction

Материал из Web эксперт
Перейти к: навигация, поиск

"blockDirection" Example

   <source lang="html4strict">
   

<html> <body>

Click in this text that must be read from right to left.

<script language="JavaScript">

   function function1() {
       var m = document.all.myP.blockDirection; 
       alert(m);
   }

</script> </body> </html>


     </source>