Posts by Wemy Felipe • 21 points
3 posts
-
0
votes1
answer90
viewsA: I wonder if there is any way to load a jquery before the page is loaded
The ready() function as you can check in documentation in other words it only executes what is inside it after loading its selector is safely "fully loaded" as you are using $(Document) as selector…
-
2
votes1
answer55
viewsA: Problem with jquery percentage calculation
let’s first understand what each function does and what it returns. .val() jQuery will return the value of the element which in this case will be a string, according to the documentation w3schools…
-
0
votes1
answer96
viewsQ: Eureka + Zuul + micro services + Thymeleaf - Problem loading webjars
I am creating a system based on micro service architecture with the following flow. Eureka door(8888) Zuul door(8080) stu_usuario (8081) /Usuario/** stu_vehicle (8082) /Vehicle/** From what I…