$(document).ready(function() { var ua = window.navigator.userAgent.toLowerCase(); if( /iphone/.test(ua) || /android/.test(ua) || /opera/.test(ua) || /bada/.test(ua) ) { } else { $('header ul.menu').hover(function() { $('div.over_section').show(); }, function() { $('div.over_section').hide(); }); } });