Advertisement
GochiSiyan

safari class

Feb 17th, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. (function () {
  2. var ua = navigator.userAgent.toLowerCase();
  3. if (ua.indexOf('safari') != -1) {
  4. if (ua.indexOf('chrome') > -1) {
  5. console.log('chrome');
  6. } else {
  7. console.log('safari');
  8. document.documentElement.classList.add('jnews-safari');
  9. }
  10. }
  11. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement