I need some function returning a boolean value to check if the browser is Chrome.
How do I create such functionality?
You can use:
navigator.userAgent.indexOf("Chrome") != -1
It is working on v.71