Posts by Jhonatan S. Souza • 21 points
2 posts
-
2
votes3
answers32
viewsA: Jquery . text printing only once
Because there is an error in your code, note that you have a comma, remove it that will solve. Remove that comma at the end: $(".teste1").text("1"), To: $(".teste1").text("1");…
-
0
votes3
answers745
viewsA: Error with Bootstrap 4 at Angular 5
This is due to a bug between the bootstrap version you are using and the Angular CLI has already been reported here: Bug boostrap >=4 and Angular CLI One way to fix this is by changing the…