I have hover state on my JQuery which is this:
$('.navigation a').hover(
function () {
$(this).next('span').show();
},
function () {
$(this).next('span').hide();
}
);
Now I want that hover state to disable whenever the user's screen resolution is 769px or lower.
window.screen.width.