Ask Your Question
3

How can the function preventDefault() be used in Ajax?

asked 2023-06-14 01:04:55 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-14 01:17:01 +0000

ladyg gravatar image

The preventDefault() function is typically used in JavaScript to prevent the default behavior of an HTML element, such as a form submission or a link click.

In an Ajax request, the preventDefault() function can be used to prevent the default form submission behavior that would normally occur when a user submits a form. Instead, the Ajax request can be sent asynchronously using XMLHttpRequest or the fetch() method.

Here's an example of how preventDefault() can be used with Ajax:

document.querySelector('#my-form').addEventListener('submit', function(event) {
  event.preventDefault(); // prevent form submission

  // Get form data
  const formData = new FormData(event.target);

  // Send Ajax request using fetch()
  fetch('/ajax/endpoint', {
    method: 'POST',
    body: formData
  })
  .then(response => {
    // Handle response
  })
  .catch(error => {
    console.error('Error:', error);
  });
});

In this example, when the user submits the form with an id of my-form, the preventDefault() function is called to prevent the default form submission behavior. The form data is then extracted using FormData and sent as an Ajax request using the fetch() method. The response is handled using a .then() block, and any errors are caught and logged to the console.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-14 01:04:55 +0000

Seen: 13 times

Last updated: Jun 14 '23