You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it can be good to be able to have events available on affix to be abble to fire 3 events :
when $("#myAffix") become "affixed top" (.affix-top)
when $("#myAffix") become "affixed top" (.affix-bottom)
when $("#myAffix") come back "non affixed" (.affix)
Exemple could look like :
$('#myAffix').on('top.bs.affix', function () {
// do something…
})
$('#myAffix').on('bottom.bs.affix', function () {
// do something…
})
$('#myAffix').on('none.bs.affix', function () {
// do something…
})
That can solve difficulties to adapt DOM in some case of uses
Thanks.
The text was updated successfully, but these errors were encountered:
I think it can be good to be able to have events available on affix to be abble to fire 3 events :
.affix-top
).affix-bottom
).affix
)Exemple could look like :
That can solve difficulties to adapt DOM in some case of uses
Thanks.
The text was updated successfully, but these errors were encountered: