jQuery Plugin For Client Browser and OS Detector - jQuery Browsers

File Size: 35.4KB
Views Total: 1049
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin For Client Browser and OS Detector - jQuery Browsers

jQuery Browsers is a simple plugin that allows to get client's OS and Browser details and then output them on your screen.

Example:

mozilla/4.0 (compatible; msie 8.0; windows nt 6.1; trident/4.0; slcc2; .net clr 2.0.50727; .net clr 3.5.30729; .net clr 3.0.30729; media center pc 6.0; .net4.0c; .net4.0e)

You might also like:

Basic Usage

1. Include jQuery library and jQuery Browsers plugin on your web page

<script src="libs/jquery.js" type="text/javascript"></script>
<script src="jquery.browsers.js" type="text/javascript"></script>

2. Call the plugin

$(document).ready(function(){

    $("body").browsers();

    $("p").html(navigator.userAgent.toLowerCase());

});

This awesome jQuery plugin is developed by agenceepsilon. For more Advanced Usages, please check the demo page or visit the official website.