Posts by André Vale • 11 points
2 posts
-
0
votes1
answer72
viewsA: How do I clean data that I picked up in a database search using ajax?
You are probably facing an AJAX cache problem. You can disable it globally with the following command: $.ajaxSetup({ cache: false }) What jQuery does is add a parameter &_=<time stamp> for…
-
1
votes1
answer617
viewsA: How to remove dynamically selected images before Submit
Hello, take this example, maybe it will help you: $(document).on("click", "[data-remove-file]", function (e) { e.preventDefault(); $(e.target).closest("[data-row]").remove(); });…