Created
February 24, 2015 14:57
-
-
Save thotbox/492312e5ba4e5524140d to your computer and use it in GitHub Desktop.
Mobile Phone Store Selector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(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