Hi,
This will be probable quite odd question. But i thought I will give it a go.
Is there a way to remove everything from body apart of one tag that has particular class?
in my case it is an a tag with href.
I need to "fish out" the a tag and then display on DOM just the href tag in lets say p tag.
<body>
<a class="avatar_user_name" href="/product/xyz">Title</a>
...other body tags and text
<a class="avatar_user_name" href="/product/abc">Title</a>
</body>
and as a result I need to have something like this
<body>
<p>xyz</p>
<p>abc</p>
</body>
Thank you for any help in advance Regards