How to check browser is safari
How to check browser is safari
Write below code
$(document).ready(function () {
if (/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {// set custome calls $(".somecss").css("margin-top", "-38px");
}
})
By Junaid A 11-Sep-2023 2