I have FontAwesome icons with class='className'.
<i class="className fas fa-circle"></i>
<i class="className fas fa-circle"></i>
and the below jQuery script.
$(document).on('click', '.className', function () {
console.log('working');
});
It works fine on desktop but is unresponsive on my iPhone SE Safari browser.
edit: added closing tags, just forgot to add them here, I'm using i, as that is what the FontAwsome site uses?