diff --git a/Frameworks/Ajax/Ajax/Components/AjaxUpdateContainer.api b/Frameworks/Ajax/Ajax/Components/AjaxUpdateContainer.api
index 7bfb696772..4f86925d20 100644
--- a/Frameworks/Ajax/Ajax/Components/AjaxUpdateContainer.api
+++ b/Frameworks/Ajax/Ajax/Components/AjaxUpdateContainer.api
@@ -30,5 +30,10 @@
+
+
+
+
+
diff --git a/Frameworks/Ajax/Ajax/Sources/er/ajax/AjaxUpdateContainer.java b/Frameworks/Ajax/Ajax/Sources/er/ajax/AjaxUpdateContainer.java
index 653798eb9c..6436655b67 100644
--- a/Frameworks/Ajax/Ajax/Sources/er/ajax/AjaxUpdateContainer.java
+++ b/Frameworks/Ajax/Ajax/Sources/er/ajax/AjaxUpdateContainer.java
@@ -183,6 +183,11 @@ public void appendToResponse(WOResponse response, WOContext context) {
appendTagAttributeToResponse(response, "id", id);
appendTagAttributeToResponse(response, "class", valueForBinding("class", component));
appendTagAttributeToResponse(response, "style", valueForBinding("style", component));
+ appendTagAttributeToResponse(response, "aria-live", valueForBinding("aria-live", component));
+ appendTagAttributeToResponse(response, "aria-relevant", valueForBinding("aria-relevant", component));
+ appendTagAttributeToResponse(response, "aria-atomic", valueForBinding("aria-atomic", component));
+ appendTagAttributeToResponse(response, "aria-busy", valueForBinding("aria-busy", component));
+ appendTagAttributeToResponse(response, "role", valueForBinding("role", component));
appendTagAttributeToResponse(response, "data-updateUrl", AjaxUtils.ajaxComponentActionUrl(context));
// appendTagAttributeToResponse(response, "woElementID", context.elementID());
response.appendContentString(">");