How to detect is device is MacOS

Posted on: October 10th, 2022
By: Tadeo Martinez

let isMac = navigator.platform.toUpperCase().indexOf('MAC')>=0;

if(!isMac){
	let bgAttachment = document.querySelectorAll('.bg-attachment');
			for (i = 0; i < bgAttachment.length; i++){
					bgAttachment[i].classList.add('ios-device');					
			}
}

if(isMac){
		let bgAttachmentLanding = document.querySelectorAll('.section-header-img');
	for (i = 0; i < bgAttachmentLanding.length; i++){
					bgAttachmentLanding[i].classList.add('allow-animation');					
			}
}

Have any questions or comments? Write them below!


Leave a Reply

Your email address will not be published. Required fields are marked *