> For the complete documentation index, see [llms.txt](https://aeudoc.gitbook.io/developer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aeudoc.gitbook.io/developer/presentation/client-script/update-partial-content-async.md).

# Update Partial Content Async

## Syntax

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

## Arguments

<table data-header-hidden><thead><tr><th width="146">Argument</th><th width="130">Data Type</th><th width="330">Description</th><th>Default Value</th></tr></thead><tbody><tr><td><p><em>url</em></p><p> </p></td><td>String</td><td>URI of the action whose content should be updated.</td><td> </td></tr><tr><td><p><em>id</em></p><p> </p></td><td>String</td><td>Identifier of the Page Section whose content should be updated.</td><td> </td></tr></tbody></table>

## Description

Loads data from the Server into the Page Section specified in the parameter “id” by sending an HTTPPUT 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. It should be used when the action of the URI updates data from the database.

## Example

The following program illustrates the function call:

```
$.putPartialAsync("main/partialupdateasync/" + 1234, "div-container-example");
```

It will send a request to “main/partialupdateasync” along with the parameter of the action set to 1234 (specifying the data to be updated) 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 updating occurs.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://aeudoc.gitbook.io/developer/presentation/client-script/update-partial-content-async.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
