Here’s My code:
<div templateid="asd">
<b>SEND</b>
</div>
I’m trying to get the parent div having b tag text as SEND.and then binding another DOM to the parent div.I cannot give id class or any other attributes to above tag as its an external web application with which i’m trying to integrate our application.
and what i tried is:
$('div').find('b[html="SEND"]');
$('div').find('b[text="SEND"]');
Any help would be appreciated.
Thanks for stopping by…!!
you could try
Or a mixture of everyone’s answers: