Skip to content

Instantly share code, notes, and snippets.

@psteinweber
Last active August 29, 2015 13:56
Show Gist options
  • Save psteinweber/8859249 to your computer and use it in GitHub Desktop.
Save psteinweber/8859249 to your computer and use it in GitHub Desktop.
Remove a class on devices > Android 2.3 #js #android
var ua = navigator.userAgent;
if( ua.indexOf("Android") >= 0 )
{
var androidversion = parseFloat(ua.slice(ua.indexOf("Android")+8));
if (androidversion < 2.3)
{
$('.class').css('display','none');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment