Forum Moderators: open
var agt = navigator.userAgent.toLowerCase();
if (agt.indexOf("safari") != -1) {
// is safari
}
else {
// not safari
}
So it would be better to try and find out what the problem that safari are having and work around it.
However that is not always possible, so the above may work for you in the short term.