JavaScript DHTML/Table/abbr

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

"abbr" Example

   <source lang="html4strict">
   

<html> <head> <script language="JavaScript"> function function1() {

   document.all.myTableHeader.abbr = "Abbreviation";

} </script> </head> <body onLoad="function1();">

This is the table heading
Cell 1 content Cell 2 content
Cell 3 content Cell 4 content

</body></html>


     </source>