For me small is beautiful so i'm using this technique:
In CSS file:
/* Smartphones ----------- */
@media only screen and (max-width: 760px) {
#some-element { display: none; }
}
In jQuery/Javascript file:
jQuery(document).ready(function($) {
var $is_mobile = false;
if( $('#some-element').css('display') == 'none' ) {
$is_mobile = true;
}
// now i can use $is_mobile to run javascript conditionally
});
My objective was to have my site "mobile friendly". So i use CSS Media Queries do show/hide elements depending on the screen size.
For example, in my mobile version i don't want to activate the Facebook Like Box, because it loads all those profile images and stuff. and that's not good for mobile visitors. So, besides hiding the container element, i also do this inside the jQuery code block (above):
if(!$is_mobile) {
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/pt_PT/all.js#xfbml=1&appId=210731252294735";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}
You can see it in action at http://lisboaautentica.com
I'm still working on the the mobile version, so it's still not looking as it should, as of writing this.