Search
InputDialog.input Property
See Also
 






Gets a reference to the dialog's input element.

Namespace: MindFusion.Common.UI
File: InputDialog.js

 Syntax

JavaScript  Copy Code

get input() {}

 Property Value

HTMLElement

 Example

The following code uses the HTMLElement of the InputDialog to change its background:

JavaScript  Copy Code
var inputDialog = new ui.InputDialog("Continue Game", "Would You Like to Play More?");
inputDialog.input.style.background = "yellow";

 See Also