Sunday, 22 June 2014

DOM (Document Object Model)

DOM(Document Object Model)


  When a web page is loaded, the browser creates a Document Object Model of the page.


  The HTML DOM is a standard object model and programming interface for HTML.
 It defines:
  The HTML elements as objects.
  The properties of all HTML elements.
  The methods to access all HTML elements.
  The events for all HTML elements.
In other words: The HTML DOM is a standard for how to get, change, add, or delete HTML elements.



Related Posts:

  • PHP OPERATORS Php operators    —Variables are simply containers for information. In order to do anything useful with them, you need Operators&n… Read More
  • PHP echo & Print, PHP Comments Difference between echo and print in PHP   —PHP echo and print both are PHP Statement.    Both are used to d… Read More
  • PHP data types PHP data types   Data types specify the size and type of values that can be stored. —Variable does not need to be declared ITS DATA… Read More
  • Magic Constants Figure 1 1 .__LINE__         The current line number of the file.               &… Read More
  • PHP FORMS Form GET Method   —GET method is unsecured method because it display all information on address bar/ url. —By default method is get meth… Read More