Guest User

Untitled

a guest
Apr 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <ion-input type="text" placeholder="Enter a Town, Province or City" name="newPlace" [(ngModel)]="newPlace" id="empty"></ion-input>
  2.  
  3. <button ion-button block type="submit" (click)="addLocation()">ADD AND SAVE MORE LOCATIONS</button>
  4.  
  5. addLocation(){
  6. if( document.getElementById('empty').value === '' ){
  7. alert('empty');
  8. }
  9. }
  10.  
  11. <button ion-button block type="button" (click)="addLocation()">ADD AND SAVE MORE LOCATIONS</button>
  12.  
  13. <button ion-button block type="button" (click)="addLocation(newPlace)">ADD AND SAVE MORE LOCATIONS</button>
  14.  
  15. addLocation(newPlace){
  16. if(newPlace === '' ){
  17. alert(newPlace);
  18. }
  19. }
Add Comment
Please, Sign In to add comment