Collapse menu on desktop

-1

I followed as in this example link

But on the page my result was:

    
asked by anonymous 07.09.2016 / 17:50

1 answer

0

In this same example ( link ) already has the answer

$(window).resize(function() {
var viewportWidth = $(window).width();
$('#monitor').html(viewportWidth);

});

    
07.09.2016 / 17:56