
Ajax for multiple form
You can use a single ajax function to submit the multiple forms in HTML. You have to use a class for the submit button and the submit button should be inside the HTML form.
Answers 1
-
Dynamically get the form action url, method, data and call ajax on click using jQuery
<form action="/post-ajax" method="POST"> <input type="submit" class="submit-form" value="submit" /> </form> <form action="/post-ajax-2" method="POST"> <input type="submit" class="submit-form" value="submit" /> </form> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('.submit-form').on('click', function(e){ e.preventDefault(); let form = $(this).closest('form'); let formActionUrl = form.attr('action'); let type = form.attr('method'); let formData = form.serialize(); $.ajax({ url: formActionUrl, type: type, data: formData, success: function(response){ console.log(response); }, error: function (xhr, ajaxOptions, thrownError) { console.log(xhr.status); console.log(thrownError); } }); }); }); </script>
0This code snippet helps you to get the form attribute values and call ajax dynamically without any changes in javascript code. It will help you to submit multiple forms using the same ajax method.
Random Code Snippet Queries: Jquery
- Show and hide target element on click button using javascript/jquery
- Get the href link on click anchor in javascript
- Append method to add text to body not working
- Jquery-3.6.0.min.js CDN link
- Enable click event on appended element using jQuery
- Execute function after Ajax call is complete
- How to validate input type file size in jQuery for multiple records
- How to get closest form input value in jQuery
- JQuery find text and show as bold in html page
- Mixed Content: The page at 'https://w3codegenerator.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint
- Preview image in BLOB URL format on choose file in jQuery
- How to find closest upper element and append html to below it in jquery
- How to preview image before uploading in jQuery
- How to check ajax request is completed in jQuery
- Jquery.validate.min.js:4 Uncaught TypeError: Cannot read properties of undefined (reading 'mode')
- Ajax done fail ajaxcomplete in not a function
- Uncaught TypeError: $.ajaxSetup is not a function
- How to create read more in jquery
- How to use and purpose of localstorage in javascript
- Uncaught TypeError: $.ajax is not a function
- How to check object is empty or not in jQuery
- How to reset form input element on click
- How to remove Choose File button in jquery
- JQuery append html to below the target element
- How to pass javascript variable to laravel route on ajax call