1
I have a redirect button for Whatsapp on my site that doesn’t work on Ios, would there be any way to hide it just for that OS? In case it is inside a href in html, just hide it when the user is using ios.
1
I have a redirect button for Whatsapp on my site that doesn’t work on Ios, would there be any way to hide it just for that OS? In case it is inside a href in html, just hide it when the user is using ios.
1
You can try an approach of this kind,
var ehIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
if(ehIOS){
//codigo para ocultar
}
Browser other questions tagged javascript jquery html css web-application
You are not signed in. Login or sign up in order to post.
Thanks! It worked!
– Wel