Started

Selectors

Animation

AJAX

CSS

Event

Manipulation

Cookie

String

Attributes

Data

Storage

Miscellaneous

$browser

Contains flags of browser from useragent.
$browser

Notes

Qatrix will detect following browsers or devices : [msie, msie6, msie7, msie8, msie9, msie10, chrome, firefox, mozilla, opera, webkit, iPad, iPhone, android]

Example

HTML code
<div id="message"></div>
<button onclick="start_get_browser()">Get browser</button>
JavaScript code
function start_get_browser()
{
	var browsers = ["msie", "msie6", "msie7", "msie8", "msie9", "msie10", "chrome", "firefox", "opera", "webkit", "iPad", "iPhone", "android"];
	$each( browsers, function (i, item)
	{
		if( $browser[ item ] )
		{
			$html( $("message"), "You are using " + item );
		}
	});
	if( $browser.msie6 )
	{
		alert( "Your browser is out-of-date!" );
	}
}
Demonstration