Search.../

opened

Indicates if the hamburger menu container is currently open.

Description

If opened is true, the container is visible.

If opened is false the container is hidden.

Type:

booleanRead Only

Was this helpful?

Indicates if the menu container is currently open

Copy Code
1if($w("#myMenuContainer").opened) {
2 $w("#myMenuContainer").close();
3 }
4 else {
5 $w("#myMenuContainer").open();
6 }