jasny bootstrap off canvas - how to set autohide and not showing offcanvas initially

678 Views Asked by At

I am using Jasny Bootstrap Offcanvas. I want to initially set autohide option to false, however when I do that, the corresponding offcanvas shows, which I want to avoid.

How can I set autohide to false and prevent offcanvas from being shown?

1

There are 1 best solutions below

0
On

I had the same problem, but I want to set autohide to true. Setting toggle: false works for me:

$("nav").offcanvas({ autohide: true, toggle: false });