// ******************************* // Adjust width // ******************************* var mmScript = { ready : function() { if ( jQuery('#edit-mobile-theme-detection').val() != 'mobile_theme_detect_mobiledevicedetect' ) { jQuery('#settings-mobiledevicedetect').hide(); } jQuery('#edit-mobile-theme-detection').bind('change', function() { if ( jQuery('#edit-mobile-theme-detection').val() == 'mobile_theme_detect_mobiledevicedetect' ) { jQuery('#settings-mobiledevicedetect').show(); } else { jQuery('#settings-mobiledevicedetect').hide(); } }); } }; jQuery(document).ready(mmScript.ready);