Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to detect user browser in JavaScript

1 Answer

0 votes
let userAgent = navigator.userAgent;
let browserName;
         
if (userAgent.match(/chrome|chromium|crios/i)) {
    browserName = "chrome";
} else if (userAgent.match(/firefox|fxios/i)) {
           browserName = "firefox";
} else if (userAgent.match(/safari/i)) {
           browserName = "safari";
} else if (userAgent.match(/opr\//i)) {
           browserName = "opera";
} else if (userAgent.match(/edg/i)) {
           browserName = "edge";
} else {
         browserName = "No browser detection";
}
         
          
console.log(browserName)

  
 
 
/*
run:
 
firefox
 
*/

 



answered Nov 24, 2022 by avibootz

Related questions

1 answer 177 views
1 answer 142 views
142 views asked Feb 21, 2019 by avibootz
2 answers 199 views
1 answer 119 views
2 answers 252 views
...