User Tools

Site Tools


javascript

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
javascript [2013/04/24 00:28] – created javapimpjavascript [2023/08/18 18:15] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Get Element ====== ====== Get Element ======
 +
 +===== getElementById() =====
 +The getElementById() method returns the first element with the specified id.
 +
 +<code>
 +document.getElementById(id)
 +</code>
 +
 +^ Parameter ^ Description ^
 +| ''id''    | The id of the element to retrieve. |
 +
 +<code javascript>
 +var el = document.getElementById("theId");
 +alert(el.textContent); // the content of the element
 +</code>
  
 ===== getElementsByName() ===== ===== getElementsByName() =====
javascript.1366763327.txt.gz · Last modified: 2023/08/18 18:15 (external edit)