Element Instance References - electrikmilk/javascript-ui GitHub Wiki
You can easily reference an element by giving it a unique reference name (globally scoped) without needing to worry about its selector (which wouldn't give back the element instance).
Add a reference to any element:
Element()
.ref("myReference")
Get it later using the ref() function.
ref("myReference"); // returns element instance.