Web Design and Development: Course Instructor: Wardah Mahmood Email Id: Wardah - Mahmood@riphah - Edu.pk
Web Design and Development: Course Instructor: Wardah Mahmood Email Id: Wardah - Mahmood@riphah - Edu.pk
development
Lecture 10
Course Instructor: Wardah Mahmood
Email Id: wardah.mahmood@riphah.edu.pk
Document Object Model
(DOM)
Document Object Model (DOM)
• The DOM defines a standard for accessing and manipulating HTML documents.
• A representation of the current web page as a tree of JavaScript objects
• Allows you to view/modify page elements in script code
• The DOM defines the objects and properties of all document elements, and the
methods (interface) to access them.
HTML Nodes
<html>
<head>
<title>My title</title>
</head>
<body>
<h1>My header</h1>
<a href="http://fc.riphah.edu.pk">My link</a>
</body>
</html>
DOM Tree Example
Node Parents, Children & Siblings
• nodeName is read-only
• nodeName of an element node is the same as the tag name
• nodeName of an attribute node is the attribute name
• nodeName of a text node is always #text
• nodeName of the document node is always #document
HTML DOM Properties
There are two special document properties that allow access to the tags:
• document.documentElement - returns the root node of the document
• document.body - gives direct access to the <body> tag
The getElementById() Method
<p id="intro">Hello World!</p>
<p>This example demonstrates the <b>getElementById</b> method!</p>
<script>
x=document.getElementById("intro");
document.write("<p>The text from the intro paragraph: " + x.innerHTML + "</p>");
</script>
See: Example 01
The getElementsByTagName() Method
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<script>
x=document.getElementsByTagName("p");
document.write("Text of second paragraph: " + x[1].innerHTML);
</script>
See: Example 02
DOM Node List Length
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
<script>
x=document.getElementsByTagName("p");
for (i=0;i<x.length;i++)
{
document.write(x[i].innerHTML);
document.write("<br />");
}
</script>
See: Example 03
Change the Text of an HTML Element
document.getElementById("p1").innerHTML="New text!";
Change Style of an HTML
Element
document.body.style.backgroundColor="#cccccc";
document.getElementById("p1").style.color="#00cc00";
document.getElementById("p1").style.fontFamily="Arial";
See: http://www.w3schools.com/jsref/dom_obj_style.asp
Global DOM Objects
Global DOM Objects
• Methods:
• alert, blur, clearInterval, clearTimeout, close, confirm, focus, moveBy, moveTo, open, print, prompt,
resizeBy, resizeTo, scrollBy, scrollTo, setInterval, setTimeout
• Properties:
• document, history, location, name
See: http://www.w3schools.com/jsref/obj_window.asp
The “window” Object
function delayedMessage() {
var myTimer = setTimeout("alert('Booyah!');", 5000);
}
See: Example 04
The “window” Object
See: Example 05
The “navigator” Object
• Information about the web browser application
• Methods:
• javaEnabled()
• Properties:
• appCodeName, appName, appVersion, ,cookieEnabled, geolocation, language, onLine, platform,
product , userAgent
See: http://www.w3schools.com/jsref/obj_navigator.asp
The “navigator” Object
<div id="example"></div>
<script type="text/javascript">
<!--
txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
Txt+= "<p>Browser Name: " + navigator.appName + "</p>";
txt+= "<p>Browser Version: " + navigator.appVersion + "</p>";
txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt+= "<p>Language: " + navigator.language + "</p>";
txt+= "<p>Online: " + navigator.onLine + "</p>";
txt+= "<p>Platform: " + navigator.platform + "</p>";
txt+= "<p>Product: " + navigator.product + "</p>";
txt+= "<p>User-agent header: " + navigator.userAgent + "</p>";
document.getElementById("example").innerHTML=txt;
//-->
</script>
See: Example 06
The “navigator.geolocation” Object
See: http://www.w3schools.com/jsref/obj_screen.asp
The “screen” Object
See: Example 07
The “history” Object
• List of sites the browser has visited in this window
• Properties:
• length
• Methods:
• back, forward, go
See: http://www.w3schools.com/jsref/obj_history.asp
The “history” Object
<script type="text/javascript">
function goBack()
{
window.history.back()
}
</script>
<input type="button" value="Back" onclick="goBack()" />
See: Example 08
The “location” Object
• Represents the URL of the current web page
• Properties:
• host, hostname, href, pathname, port, protocol, search
• Methods:
• assign, reload, replace
See: http://www.w3schools.com/jsref/obj_location.asp
The “location” Object
<script type="text/javascript">
function newDoc()
{
window.location.assign("http://www.w3schools.com")
}
</script>
<input type="button" value="Load new document"
onclick="newDoc()" />
See: Example 09
The “document” Object
• Represents current HTML page object model
• Properties:
• anchors, body, cookie, domain, forms, images, links, referrer, title, URL
• Methods:
• getElementById, getElementsByName, getElementsByTagName, write, writeln
See: http://www.w3schools.com/jsref/dom_obj_document.asp