Wikipedia:User scripts/Guide: Difference between revisions
Content deleted Content added
Pi Delport (talk | contribs) convert to source tags, few other tweaks |
m →Finding elements: Document Object Model |
||
Line 39:
=== Finding elements ===
Every [[HTML]] element is a node of [[Document Object Model|DOM]] model which allows scripts to access the element. For example on this page
<source lang="html4strict">
Line 56:
Also see [http://www.w3schools.com/dom/dom_element.asp w3schools] or [http://developer.mozilla.org/en/docs/DOM:element mozilla.org].
<!--To see all the elements on the page and their relations simply look at the page source code.-->
=== Checking the page ===
|