Posts by Lucas Oliveira • 14 points
2 posts
-
0
votes1
answer412
viewsA: After using . innerHTML to fill a DIV, how to clear that div with another function?
Other similar forms of remove text from a tag without other child elements would be: elemento.removeChild(elemento.firstChild); or elemento.removeChild(elemento.lastChild);…
-
-1
votes2
answers102
viewsA: Ionic2 root Nav
Victor, try with the ionViewWillEnter. To be clearer, ionViewWillEnter will be triggered whenever you enter this page. ionViewDidLoad will be curled and will therefore trigger the actions only once.…