document.title : title : Document JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Document » title »

 

document.title








The title property is a read-only string that specifies the title of the document.


This property is commonly set with the


tag.











<html>
    <head><title>My Web Page</title></head>
    <script>
    <!--
    document.write("The title of this page is <i>");
    document.write(document.title,"</i>");
    -->
    </script>
    </html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Document
» title