How to check if this is Chrome Browser with JS
Apr-2020
$.browser.chrome = /chrom(e|ium)/.test(navigator.userAgent.toLowerCase());
if($.browser.chrome){
console.log(“This is chrome browser that you are using…”);
}
Apr-2020
$.browser.chrome = /chrom(e|ium)/.test(navigator.userAgent.toLowerCase());
if($.browser.chrome){
console.log(“This is chrome browser that you are using…”);
}