How to check if this is Chrome Browser with JS

$.browser.chrome = /chrom(e|ium)/.test(navigator.userAgent.toLowerCase());
if($.browser.chrome){
console.log(“This is chrome browser that you are using…”);
}

Start the Discussion!Leave a Reply