How can I disable Bootstrap's “affix” on smaller screens?

后端 未结 2 1314
广开言路
广开言路 2021-02-01 03:20

I\'m using the affix component in a site for a navbar and would like to disable it on smaller screens. I\'m using the jquery method vs. the data and can\'t figure out how to tur

2条回答
  •  囚心锁ツ
    2021-02-01 03:40

    Correct me if I'm wrong, but try setting if(z <= 767) { to if(z <= 1) { that way it won't re-size? Unless I am missing the point of your question.

提交回复
热议问题