answersLogoWhite

0

What is dom javascript?

User Avatar

Anonymous

12y ago
Updated: 11/11/2024

DOM is document object model: It defines the logical structure to access and manipulate the HTML document.

User Avatar

Llewellyn Wolf

Lvl 10
2y ago

What else can I help you with?

Related Questions

How can you close the iframe in calling page in php and javascript?

Using JavaScript, you can accomplish this by deleting the iframe node from the DOM.


What does a JavaScript certificate document?

A JavaScript certificate document is a document that proves you have all knowledge needed to master web development by using the Javascript and also HTML/DOM.


How do you change HTML attribute using HTML dom?

You can change HTML attributes easily. Using Dom that can be done using JavaScript.


How is DOM used in JavaScript?

DOM stands for document Object Model that is used to get, change, add or delete HTML elements.


What is the difference between an HTML page and a dhtml page?

DHTML combines HTML, JavaScript, the HTML DOM, and CSS.


What is XML Parsing?

Extensive MarkUp languageXML parsing is when you convert an XML document into an XML DOM object - which can then be manipulated with a JavaScript.


What are the strengths of javascript to HTML?

HTML is a markup language which allows you to define and place elements on a page, or Document Object Model (DOM). Of course, HTML is static. That means that when a web designer uses a certain HTML attribute to make a word bold, for example, there is no way with HTML alone to change that setting. One part of JavaScript allows a programmer to add/remove or modify the DOM elements on the fly using scripts and stylesheets known as CSS. The combination of HTML, JavaScript and CSS is collectively known as DHTML (Dynamic HTML). Note that Javascript is a fully developed object based scripting language and can do many other things aside from DOM manipulation.


How do you change Css class of an element with javascript?

//Find the object in the DOM, and set its new class name: document.getElementById['elementIdName'].className = "nameOfYourNewClass";


How do you add multiple onblur or onclick actions to a form?

You have to use JavaScript. It is built into the DOM, but it requires that to read and manipulate the Document Object Model.


What is a node id?

It is the value of the attribute id of a node. It is used when manipulating the DOM and can be accessed by using the function getElementById() of the document object in JavaScript


Taking into account DOM Javascript and CSS which web browser is the most standards compliant?

I'm pretty sure Google Chrome is the most compliant.


How do i get battery level in javascript?

That's not possible. Javascript is a browser-based scripting language. Thus, it only has access to DOM objects. If you are making a desktop application and want access to that sort of thing, try Visual Basic, C, C++, C#, etc.