Is there a way to identify and block users of specific operating systems from accessing the site using JavaScript?
if (navigator.appVersion.indexOf("Win") != -1)
I am able to extract the user's OS using the provided code, but I need help in blocking users of other OSs. Any suggestions or solutions would be greatly appreciated.