Posts by Walter Neto • 27 points
3 posts
-
0
votes3
answers105
viewsA: How to reuse this js in other elements
I don’t know if I understood what you wanted but you could use prototype in javascript to make reusable components. I kicked off with a very simple component, but nothing stops you from improving it…
-
0
votes3
answers761
viewsA: Abort AJAX request
When you make a request on the front, it is sent to the server, which executes the operation, and when you cancel before receiving the return, you only stop receiving it but the execution continues…
-
1
votes2
answers358
viewsA: On click event repeating action
Try this before adding click events: $("#foo").unbind("click");