diff --git a/README.md b/README.md
index e3b5779..1e11b33 100644
--- a/README.md
+++ b/README.md
@@ -101,6 +101,7 @@ Full documentation is available on https://Hieromon.github.io/AutoConnect, some
- Supports that `
` tags can now be added to each element. (PR #95)
- Supports that able to place the checkbox label forward or backward. (PR #99)
- Supports flicker signal output according to the status of WiFi_mode. (issue #98)
+- Supports AutoConnectAux::fetchElement function to retrieve inputted element values via a custom Web page.
- Fixed bug in AutoConnectCredential when offset is >256. (PR #103)
### [0.9.10] June 12, 2019
diff --git a/mkdocs/achandling.md b/mkdocs/achandling.md
index 07021ea..187dc25 100644
--- a/mkdocs/achandling.md
+++ b/mkdocs/achandling.md
@@ -594,6 +594,61 @@ portal.on("/echo", [](AutoConnectAux& aux, PageArgument& args) {
portal.begin();
```
+### Retrieve the values with WebServer::on handler
+
+ESP8266WebServer class and the WebServer class assume that the implementation of the ReqestHandler class contained in the WebServer library will handle the URL requests. Usually, it is sketch code registered by ESP8266WebServer::on function.
+
+When the page transitions from the custom Web page created by AutoConnectAux to the handler registered by ESP2866WebServer::on function, a little trick is needed to retrieve the values of AutoConnectElements. (i.e. the URI of the ESP8266WebServer::on handler is specified in the [uri](acelements.md#uri) attribute of [AutoConnectSubmit](acelements.md#autoconnectsubmit)) AutoConnect cannot intervene in the procedure in which the ESP8266WebServer class calls the on-page handler by the sketch. Therefore, it is necessary to retrieve preliminary the values of AutoConnectElements using the [AutoConnectAux::fetchElement](apiaux.md#fetchelement) function for value processing with the on-page handler.
+
+The following sketch is an example of extracting values inputted on a custom web page with an on-page handler and then processing it.
+
+```cpp hl_lines="13 20 27 38"
+ESP8266WebServer server;
+AutoConnect portal(server);
+AutoConnectAux Input;
+
+const static char InputPage[] PROGMEM = R"r(
+{
+ "title": "Input", "uri": "/input", "menu": true, "element": [
+ { "name": "input", "type": "ACInput", "label": "INPUT" },
+ {
+ "name": "save",
+ "type": "ACSubmit",
+ "value": "SAVE",
+ "uri": "/"
+ }
+ ]
+}
+)r";
+
+// An on-page handler for '/' access
+void onRoot() {
+ String content =
+ ""
+ "