| DOM2 Reference |
| [Back] | [Glossary] [Help] |
| Source: |
<div id="doc">
<div>
Text in the first DIV.
</div>
<div id="DDD" class="secondClass">
Some text in the second DIV.
</div>
<div class="thirdClass">
Some text and <span id="SSS">element</span> in the third DIV.
</div>
<div class="fourthClass">
We can try <i>another elements</i>.
It will be much more <b>interesting</b>.
</div>
<div>
Text in the last DIV.
</div>
</div>
|
|---|
| JavaScript: |
var elem1 = document.getElementById('doc');
var output1 = elem1.hasAttributes();
var tmp = document.getElementsByTagName('div');
var elem2 = tmp[tmp.length-1];
var output2 = elem2.hasAttributes();
|
|---|
| Output: |
|
|---|
| Remarks: |
|
|---|