> How possible to define Chrome browser like other, for example Safafri:
> if ($.browser.safari) {
>         alert('This is Safari')
>     }
>
> it intersting that chrome browser do same Alert
>     "This is Safari'
>
> Question.
> How to define only CHROME browser?


$.browser.chrome = /Chrome/.test(userAgent);


Reply via email to