Guest User

Untitled

a guest
Nov 18th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <div (click)="myDiv()">
  2. <button (click)="myFunction()"> Submit </button>
  3. </div>
  4.  
  5. myFunction()
  6. {
  7. console.log("I am in myFunction");
  8. }
  9.  
  10. myDiv()
  11. {
  12. console.log("I am in myDiv");
  13. }
Add Comment
Please, Sign In to add comment