Html DOM

From wikinotes
Revision as of 19:00, 31 August 2021 by Will (talk | contribs)

Query/Manipulate an HTML page from javascript using it's DOM (domain-object-model).


Documentation

DOM docs https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model


Examples

document.querySelector('div.foo-class');      // find items by CSS-selector
document.getElementById('foo-id');            // find element with ID
document.getElementsByClassName('foo-class'); // find elements with class