It must have href attribute or put cursor:pointer; inside anchor tag being clicked:
<a class="clickable">I have no href => It does not work</a>
<a class="clickable" href="#">I have href => It works</a>
<a class="clickable cursor">I have cursor, no href => It works</a>
<style>
.cursor{
cursor:pointer;
}
</style>
It must have
href
attribute or putcursor:pointer;
inside anchor tag being clicked:Ref:
https://stackoverflow.com/questions/12207180/mobile-safari-and-jquery-events-nothing-is-firing
https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html#//apple_ref/doc/uid/TP40006511-SW6