# Get Partial Content Async

## Syntax

```
$.getPartialAsync = function (url, id)
```

## Arguments

| <p><em>url</em></p><p> </p> | String | URI of the action that should be loaded.                               |   |
| --------------------------- | ------ | ---------------------------------------------------------------------- | - |
| <p><em>id</em></p><p> </p>  | String | Identifier of the Page Section that the content should be loaded into. |   |

## Description

Loads data from the Server into the Page Section specified in the parameter “id” by sending an HTTPGET request to the action of the URI specified in “url” asynchronously, i.e. the screen will not be blocked, so the user can simultaneously execute other actions while loading occurs.

## Examples

The following program illustrates the function call:

```
$.getPartialAsync("main/partialloadasync", "div-container-example");
```

It will send a request to “main/partialloadasync” and load the response into the Page Section by the id of “div-container-example” replacing the content that is currently displayed in that Page Section. During this process, the screen will not be blocked, so the user can simultaneously execute other actions while loading occurs.


---

# 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://aeudoc.gitbook.io/developer/presentation/client-script/get-partial-content-async.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.
