JSFiddle - React, Tailwind, and code Playground
by kentaromiura
HTML
<div id="foo">
<span>one</span>
<span>two</span>
<ul>
<li>foo</li>
</ul>
<ul>
<li>baz</li>
</ul>
</div>
JavaScript
alert($('foo').getFirst().get('text'))
alert($('foo').getFirst('ul').get('text'))
alert($('foo').getChildren('ul')[0].get('text'));
alert($('foo').getElements('li')[0].get('text'));