files/en-us/web/api/htmlelement/virtualkeyboardpolicy/index.md
{{APIRef("VirtualKeyboard API")}}{{SeeCompatTable}}
The virtualKeyboardPolicy property of the {{domxref("HTMLElement")}} interface gets and sets a string indicating the on-screen virtual keyboard behavior on devices such as tablets, mobile phones, or other devices where a hardware keyboard may not be available, if the element's content is editable (for example, it is an {{htmlelement("input")}} or {{htmlelement("textarea")}} element, or an element with the contenteditable attribute set).
It reflects the value of the virtualkeyboardpolicy HTML global attribute.
An enumerated value; possible values are:
"auto" or an empty string ("")
"manual"
The following example shows how to control the on-screen virtual keyboard behavior via script:
const element = document.querySelector("input");
// the on-screen virtual keyboard behavior will be controlled by script manually
element.virtualKeyboardPolicy = "manual";
{{Specifications}}
{{Compat}}
virtualkeyboardpolicy HTML global attribute