> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.android-kiosk.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# JS: App Drawer

**App Drawer JavaScript Functions**

| You can find the JavaScript test page at https://www.android-kiosk.com/jstest.htm Just set this as the Kiosk URL on your device to test the functions.

###### Show/Hide App Drawer
Show or hide app drawer, requires version 2.5.0 or higher.

```
<script>
//SHOW APP DRAWER
function showAppDrawer() {
Android.showAppDrawer();
}

//HIDE APP DRAWER
function hideAppDrawer() {
Android.hideAppDrawer();
}
</script>
<a href="javascript:showAppDrawer();">Show App Drawer</a>
<a href="javascript:hideAppDrawer();">Hide App Drawer</a>
```