Get the elements which contains specified text inside the element(inner html)
In this post I am going to explain about how to get elements which elements have specified text in that innerhtml. For example I have list of items with some contains. So, now we want to get the element which contains "jQuery".
Example here :-
Example html code :-
<ol id="list" type="digit">
<li>I love <b>jQuery</b>.</li>
<li>Java script is Basic</li>
<li>Now a days j...
More