|
JavaScript Objects Follow the links to learn more about the objects and their collections, properties, methods and events. Contain lots of examples! | Object | Description |
|---|
Window | The top level object in the JavaScript hierarchy. The Window object represents a browser window. A Window object is created automatically with every instance of a <body> or <frameset> tag | Navigator | Contains information about the client's browser | Screen | Contains information about the client's display screen | History | Contains the visited URLs in the browser window | Location | Contains information about the current URL |
HTML DOM Objects Follow the links to learn more about the objects and their collections, properties, methods and events. Contain lots of examples! | Object | Description |
|---|
Document | Represents the entire HTML document and can be used to access all elements in a page | Anchor | Represents an <a> element | Area | Represents an <area> element inside an image-map | Base | Represents a <base> element | Body | Represents the <body> element | Button | Represents a <button> element | Event | Represents the state of an event | Form | Represents a <form> element | Frame | Represents a <frame> element | Frameset | Represents a <frameset> element | Iframe | Represents an <iframe> element | Image | Represents an <img> element | Input button | Represents a button in an HTML form | Input checkbo | Represents a checkbox in an HTML form | Input file | Represents a fileupload in an HTML form | Input hidden | Represents a hidden field in an HTML form | Input passwor | Represents a password field in an n HTML form | Input radio | Represents a radio button in an HTML form | Input reset | Represents a reset button in an HTML form | Input submit | Represents a submit button in an HTML form | Input text | Represents a text-input field in an HTML form | Link | Represents a <link> element | Meta | Represents a <meta> element | Option | Represents an <option> element | Select | Represents a selection list in an HTML form | Style | Represents an individual style statement | Table | Represents a <table> element | TableData | Represents a <td> element | TableRow | Represents a <tr> element | Textarea | Represents a <textarea> element |
DOM Summary You Have Learned HTML DOM, Now What?HTML DOM SummaryThis tutorial has taught you how to use the HTML DOM to make your web site more dynamic and interactive. You have learned how manipulate HTML elements in response of different scenarios. For more information on HTML DOM, please look at our HTML DOM examples and our HTML DOM reference. Now You Know HTML DOM, What's Next?The next step is to learn about ASP. While scripts in an HTML file are executed on the client (in the browser), scripts in an ASP file are executed on the server. With ASP you can dynamically edit, change or add any content of a Web page, respond to data submitted from HTML forms, access any data or databases and return the results to a browser, customize a Web page to make it more useful for individual users.
|