Kartik Prabhu
Kartik Prabhu

Reputation: 411

On Screen Keyboard Pop Up Automatically

I'm building an application with Electron running on a Raspberry Pi. I want an on screen keyboard to pop up automatically whenever a textbox is selected. How can I accomplish this? Either a Linux or a JavaScript solution would work.

Upvotes: 0

Views: 2467

Answers (1)

Nima Ghotbi
Nima Ghotbi

Reputation: 671

have you tried something like:

<input type="text" onclick="require('child_process').exec('matchbox-keyboard');" />

Upvotes: 1

Related Questions