I currently have a series of images that, when onmouseover is activated on desktop, it will display another image in its place. This is working fine for all desktop, mobile and tablet browsers - EXCEPT for landscape on iPad Safari/Chrome.
I'm mainly puzzled because it works fine in portrait, but once you change the iPad to landscape - tapping on the images has no effect. We also have a script that refreshes the pages on orientation change, but I don't think that would be causing any issues. Please correct me if I am wrong.
Here's a excerpt of our code:
<img src="/getmedia/b69c7c54-e84e-486d-b9fb-b89644b0c7fe/Claire-1.jpg?width=224&height=224&ext=.jpg" alt="Claire" title="Claire" class="team-member-static4" onmouseover="jQuery(this).attr('src','/getmedia/6abe9a6f-0144-470e-8dc5-3124c1446642/Claire-2.jpg?width=224&height=224&ext=.jpg').stop.toggle();" onmouseout="jQuery(this).attr('src','/getmedia/b69c7c54-e84e-486d-b9fb-b89644b0c7fe/Claire-1.jpg?width=224&height=224&ext=.jpg');">
Many thanks.