> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aseeflow.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Debugging Scripts

If a form script is loaded using an XHR from a web server, it is executed using `eval()`.
To debug it, you need to use browser-specific debugger extensions.

## Debugging Form Scripts in Google Chrome

If you are using the Google Chrome debugger, you can add the `debugger;` directive to the source
code of the script:

```html theme={null}
<form role="form">

  <script cam-script type="text/form-script">
    debugger;
  </script>

</form>
```
