Drawer Menu question

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
Paul
 
 
Posts: 126
Joined: Thu Feb 07, 2013 3:13 am

Drawer Menu question

Post 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
User avatar
Pablo
 
Posts: 22426
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Drawer Menu question

Post by Pablo »

This is possible with the following code:

Code: Select all

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