Skip to content

Instantly share code, notes, and snippets.

@thotbox
Created February 24, 2015 14:57
Show Gist options
  • Select an option

  • Save thotbox/492312e5ba4e5524140d to your computer and use it in GitHub Desktop.

Select an option

Save thotbox/492312e5ba4e5524140d to your computer and use it in GitHub Desktop.
Mobile Phone Store Selector
$(document).ready(function() {
if($('#bonus').length ) {
if ( /Android/i.test(navigator.userAgent) ) {
$('.store-ios').css('opacity', '.25');
$('.store-bb').css('opacity', '.25');
}
if ( /BlackBerry/i.test(navigator.userAgent) ) {
$('.store-ios').css('opacity', '.25');
$('.store-android').css('opacity', '.25');
}
if ( /iPhone|iPad|iPod/i.test(navigator.userAgent) ) {
$('.store-bb').css('opacity', '.25');
$('.store-android').css('opacity', '.25');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment