Page 1 of 1

Drawer Menu question

Posted: Tue Jan 02, 2024 2:10 pm
by Paul
Hello,

I would like to know if it is possible to open (automatically) the Drawer Menu extension when opening a web page. I know that there is the Load event but I don't know the code to open Drawer menu when opening a web page.

Thanks

Re: Drawer Menu question

Posted: Tue Jan 02, 2024 2:14 pm
by Pablo
This is possible with the following code:

Code: Select all

<script>
$(document).ready(function()
{
   $('#Extension1-nav').addClass('open');
});
</script>