Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Hide element onclick but only when window is bellow 960 Reply To: Hide element onclick but only when window is bellow 960

#157731
sadunaresh
Participant

check this out

I have edited below part

//SLIDE UP WHEN MOBILE TAB IS CLICKED ONLY, NOT WHEN DESKTOP NAV IS CLICKED
$("#nav-tabs-list li").click(function() {
if(browserWidth<990){
$("#nav-tabs-list").slideUp();
}
});

included a condition for list items to slide up only when browser width is less than 990px..

hope this is what you expected…