answersLogoWhite

0

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

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

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 is DOM used in JavaScript?

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


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


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

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


How do you return current url with simple HTML dom?

You can get the current url using the document.URL property, as in: <html> <body> The full URL of this document is: <script> document.write(document.URL); </script> </body> </html> Source: http://www.w3schools.com/jsref/prop_doc_url.asp


What is dom javascript?

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


How do you make a table with CSS or HTML with a height and width that won't change if text is added so it scrolls vertically?

You have to build the table in HTML, but to make scrollbars within the cells you must use JavaScript to manipulate the DOM. Neither HTML or CSS have a way to add scrollbars


Which one of the DOM 2 HTML objects is supported in Opera 9?

expando


How do you get HTML DOM nodes from a separate web page?

you can fetch the content of DOM nodes via AJAX calls - google "jquery ajax" for that


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.


What are the object in dom?

Introduction. The Document Object Model (DOM) is a programming API for HTML and XML documents. It defines the logical structure of documents and the way a document is accessed and manipulated.


What is a DOM inspector?

A DOM Inspector is a toll include in the Mozilla Firefox browser prior to Version 3. The main purpose of the DOM Inspector is to inspect the Document Object Model (DOM) tree of HTML and XML-based documents. :)