If you go to
http://www.ae.com and add to bag there's an ajax code snippet that fires and uses the s.t().
Using Chrome inspector (with source maps enabled):
Line 106 in bagbar-v5.js
```
asap("omniture").then(function() {
var e = s_gi(utag_data.report_suite), a = "scAdd,event7,event9", t = "scRemove,event8,event10", n = !1, i = !1;
e.events = "scView", e.products = "", null != b.omnitureData && ("addedProducts" in b.omnitureData && (n = !0, $.each(b.omnitureData.addedProducts, function(a, t) {
e.products += ";" + t[0] + ";;;event7=" + t[2] + "|event9=" + ("" + $.forceFloat(t[1]).toFixed(2))
})), "removedProducts" in b.omnitureData && (i = !0, $.each(b.omnitureData.removedProducts, function(a, t) {
e.products += ";" + t[0] + ";;;event8=" + t[2] + "|event10=" + ("" + $.forceFloat(t[1]).toFixed(2))
})), e.events = n && i ? a + "," + t : n ? a : i ? t : "scView", $.extend(e, b.omnitureData), e.t())
})
e.t() is the s.t() call.
Thanks,
Sam