> ## 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: Printing

**Printing JavaScript Functions**

![](https://storage.crisp.chat/users/helpdesk/website/f891df320cad6800/browserlauncher_106ztwe.png)


| 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.

###### Print Page via Android Print Client
Print Page via Android Print Client, requires version 2.0.40 or higher.

```
<script>
//PRINT PAGE VIA ANDROID PRINT CLIENT
function printPage() {
Android.printPage();
}
</script>
<a href="javascript:printPage();">Print Page via Android Print Client</a>
```