diff --git a/README.md b/README.md
index 9108c71..609f080 100644
--- a/README.md
+++ b/README.md
@@ -69,6 +69,14 @@ item whose display text needs to be different:
BB-8 (astromech)
```
+Use `data-no-result-found="true"` to show a no results message inside the autocomplete popover. Be sure to add `role="presentation"`
+to this element so that screen readers do not mistake this as an auto-complete option. The auto-complete-element has built in functionality that
+handles aria-live announcing number of search results so this should be purely decorative.
+
+```html
+
No results found!
+```
+
### A Note on Clear button
While `input type="search"` comes with an `x` that clears the content of the field and refocuses it on many browsers, the implementation for this control is not keyboard accessible, and so we've opted to enable a customizable clear button so that your keyboard users will be able to interact with it.
diff --git a/examples/index.html b/examples/index.html
index 2b90b7d..bd89f1f 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -100,9 +100,15 @@
-
+
@@ -123,3 +129,4 @@