Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <aura:application >
  2. <ui:inputText aura:id="myInput"/>
  3. <br/><br/>
  4. <button onclick="{!c.getInputDOM}" >Get Input DOM</button>
  5. </aura:application>
  6.  
  7. ({
  8. getInputDOM : function(component, event, helper) {
  9. console.log(component.find("myInput"));
  10. }
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement