# getHtmlElement

**Note:** Usually it is not necessary to get the Html element itself. Make sure there is no better way to do the things you want to do by using the app functions!

## Example Usages

```javascript
let myField = app.getHtmlElement("myFieldId");
myField.disabled = true; // just for demonstration. Please use app.setFieldEnable("myFieldId", false) instead
```

### Return Values

The function returns the HTML element. If the element is found using either the standard method or the jQuery search, it is returned; otherwise, element remains null, and null is returned.
