<html> <title> How to find the Operating sysetm(OS) name using JavaScript? </title> <script> function find_browser () { var nAgt = window.navigator.userAgent ; if (nAgt.indexOf('Mac') != -1) { alert(' Mac OS '); }else if (nAgt.indexOf('Linux') != -1) { alert(' Linux '); }else if (nAgt.indexOf('X11') != -1) { ...