# Panels settings

## HTML panel

* **Language** – currently not available
* **Doctype** – documents doctype, ie. HTML5, XHTML, etc
* **Body tag** – usually done to change the styling as `<body class="dark_ui">`. Some frameworks (Dojo) are using it to style the widgets and load CSS

<div align="left"><img src="/files/-LNuruKlxbsTTHl0tXfu" alt=""></div>

## CSS panel

* **Language** – change the pre-processor, right now only **CSS** and **SCSS**
* **Options** – additional options, like the ability to **Normalize CSS**

<div align="left"><img src="/files/-LNus7bM0uXASSNp-j_G" alt=""></div>

## JavaScript panel

* **Language** – Pre-processor, ie **CoffeeScript**, **TypeScript**, **Babel**, **Vue**, **React**, etc.
* **Frameworks & Extensions** – many commonly used JS frameworks (and their extensions)
* **Framework** `<script>` **attribute** – attribute added to the included framework script tag, ie `<script src="..." data-angular-custom-thingy>`
* **Load type** – the way JS is loaded in the editor – see table below for details:

| Load type                       | Description                                                          |
| ------------------------------- | -------------------------------------------------------------------- |
| **On Load**                     | wrap the code so it will run in *onLoad* window event                |
| **On DOM Ready**                | wrap the code so it will run in *onDomReady* window event            |
| **No wrap - bottom of \<head>** | *do not wrap* the JavaScript code, place it in the bottom of \<head> |
| **No wrap - bottom of \<body>** | *do not wrap* the JavaScript code, place it in the bottom of \<body> |

<div align="left"><img src="/files/-LNusCG760910icV9BQS" alt=""></div>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.jsfiddle.net/panels-settings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
