Posts by renanleandrof • 156 points
3 posts
-
1
votes1
answer625
viewsA: Convert the output into a text box to a dynamic table
The Function Retrieve is the one that is changing the screen by the way. function retrieve(node) { if (node.nodeType == Node.ELEMENT_NODE) { for (var m = node.firstChild; m != null; m =…
javascriptanswered renanleandrof 156 -
1
votes2
answers129
viewsA: Alternative Flow in Spring
The smoothest way for the user would be to implement the brand registration screen in a separate View and Controller, and then, when the user is registering the car, you can use a Dialog (jQuery UI…
-
2
votes2
answers523
viewsA: Why should we use Anonymous functions with jQuery instead of the function directly?
You can send only the name of the function. for example: You declare to Function that you will treat the event before: function meuOnClick() { ... } And then make your jquery point to her:…