Adds additional example for <s:iterator>
diff --git a/source/tag-developers/iterator-tag.md b/source/tag-developers/iterator-tag.md
index 552783e..4095234 100644
--- a/source/tag-developers/iterator-tag.md
+++ b/source/tag-developers/iterator-tag.md
@@ -125,3 +125,18 @@
    <s:property value="top" />
 </s:iterator>
 ```
+
+Another example when we can access a variable out of the current loop context and where name clashes with the current
+
+```jsp
+<s:select name="location" size="1" list="locations" listKey="key"
+  listValue="value" emptyOption="false" />
+
+<s:iterator var="item" value="items" status="rowstatus">
+    <s:url var="myUrl" action="itemDelete">
+        <s:param name="id" value="#item.id" />
+        <%-- Outer loop variable name [1]. as clash with item.location --%>
+        <s:param name="location" value="[1].location" />
+    </s:url>
+</s:iterator>
+```