I have a simple question - is there a way to do some function, that detects if a user is using older browser version, that I can set myself?
Something that help me to do if statement like this:
if(chromeVersion <= 48 || firefoxVersion <= 52 || ieVersion <= 10 || ...)
{//do something}
I need this because of modern plugins that I'm using and they're not supported by older browsers and can't pre-fix them.
Have a nice day!