Inside an "a" element, there's an image followed by text as a link. I'm looking to only hide the text of the link without affecting the display of the image.
<a href="https://www.example.com/page">
<img src="images/example.jpg" width="50" />
This is a link
</a>
My goal is to hide the text "This is a link" within this "a" tag while still showing the "img" tag. The HTML structure cannot be modified. How can this be accomplished?