mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
17a68b0cfd
Also change querySelector and querySelectorAll. They search from current node, not root.
16 lines
387 B
HTML
16 lines
387 B
HTML
<ul id="birds">
|
|
<li>Orange-winged parrot</li>
|
|
<li class="endangered">Philippine eagle</li>
|
|
<li>Great white pelican</li>
|
|
</ul>
|
|
|
|
<script type="text/javascript">
|
|
var birds = document.getElementsByTagName('li');
|
|
|
|
for (var i = 0; i < birds.length; i++) {
|
|
if (birds[i].matches('.endangered')) {
|
|
alert('The ' + birds[i].textContent + ' is endangered!');
|
|
}
|
|
}
|
|
</script>
|