Home › Forums › JavaScript › Responsive menu: toggle adds inline styles › Reply To: Responsive menu: toggle adds inline styles
April 2, 2016 at 3:20 am
#240121
Participant
With the jQuery resize function, you can get what you want I think
$(window).resize(function(){
var winwidth = $(window).innerWidth();
if(winwidth < 768){
$('.navigation').hide();
}
if(winwidth > 768){
$('.navigation').show();
}
});
Although the advice by @Podders with toggling classes on elements and using transitions seems even better to me.