browser-detection
v0.3.3
Published
browser-detection [![Build Status](https://travis-ci.org/sub2home/browser-detection.png?branch=master)](https://travis-ci.org/sub2home/browser-detection) ========================
Downloads
145
Readme
browser-detection
Lightweight package to get information about browser, version and OS.
Installation
$ bower install browserdetection --save
Usage
Get Data
var data = browserDetection();
console.log(data.browser); // chrome
console.log(data.version); // 29
console.log(data.os); // osx
Add CSS classes to html
tag
Javascript:
browserDetection({
addClasses: true
});
CSS:
html{
background: white;
}
/* Internet Explorer 7 specific */
html.ie-7{
background: red;
}
/* Only for OSX users with firefox */
html.osx.firefox{
background: blue;
}
Todo
- More tests for...
- osx
- win
- linux
- mobile
- Minification with grunt