We are using JAWS 16 as screen reader tool for making sure that our site is accessibility compliant. We are having site logo on the sites but those logos are not read properly by JAWS. As per the accessibility guideline we have made the alt="" of image and it renders the properly but when control goes over the logo it reads out the previously read text.
My code is like as follows:-
<a href="#main_content" class="sr-only">Skip to Main Content</a>
<a href="#footer" class="sr-only">Skip to Footer Content</a>
<div class="header">
<img tabindex="0" src="/images/logo.png" alt="">
</div>
Here when the control goes to the logo image it reads as "Skip to Footer Content Link".
Anyone have any idea why it is reading like this?