Detect users browser and version

$( document ).ready(function() { // SET BROWSER var doc = document.documentElement; doc.setAttribute('data-useragent', navigator.userAgent); // TARGET ELEMENTS IN CSS USING THIS BELOW // // html[data-useragent*='MSIE 10.0'] h1 { // color: blue; //} });
Detect what browser is being used and output it as a data attribute on the HTML. You can target certain browsers and versions using CSS.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.