+ 2
Any one to help me DOM as applied in Java script???
10 Réponses
+ 9
No one is going to teach whole DOM for you. However we will be happy for your particular question/topic.
+ 8
Gervas you answered well brother..
+ 4
With the HTML DOM, JavaScript can access and change all the elements of an HTML document.
The HTML DOM (Document Object Model)
When a web page is loaded, the browser creates a
D ocument O bject M odel of the page.
The HTML DOM model is constructed as a tree of
Objects :
The HTML DOM Tree of Objects
With the object model, JavaScript gets all the power it needs to create dynamic HTML:
JavaScript can change all the HTML elements in the page
JavaScript can change all the HTML attributes in the page
JavaScript can change all the CSS styles in the page
JavaScript can remove existing HTML elements and attributes
JavaScript can add new HTML elements and attributes
JavaScript can react to all existing HTML events in the page
JavaScript can create new HTML events in html document e.t.c
+ 3
JavaScript can be used to manipulate the DOM of a page dynamically to add, delete and modify elements.
+ 3
It is important to understand the relationships between elements in an HTML document in order to be able to manipulate them with JavaScript.
+ 3
It is important to understand the relationships between elements in an HTML document in order to be able to manipulate them with JavaScript.
+ 3
Dom provides standard objects for html documents like document object,form object,link object,table object etc...
+ 3
Properties
Close()
getElementById()
getElementByName()
Open()
Write()
Writeln()
+ 2
Gervas thanks alot
+ 2
in google write "javascript [functionName||searchTag] w3s]". You will find all you need