i want to access an element which has no id - just a class. How can i access it with Jodd? Does Jodd have an equivalent to getelementbyclassname?
The Html looks like the following:
<li class="item list1">
<a class="link" ... />
</li>
i want to access an element which has no id - just a class. How can i access it with Jodd? Does Jodd have an equivalent to getelementbyclassname?
The Html looks like the following:
<li class="item list1">
<a class="link" ... />
</li>
Sure! Just access it as you would do using jQuery (Jerry mimics its interface). In this case you will need just to use the appropriate CSS selector:
Its simple as that :)