Ask Your Question
4

How can I execute a jQuery script following an AJAX call during the Woocommerce Checkout process?

asked 2023-06-05 20:23:58 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-06-05 20:27:02 +0000

nofretete gravatar image

There are multiple ways to achieve this, one of which is to use the "success" option of the $.ajax function to execute the jQuery script after the AJAX call is successful. Here is an example:

jQuery.ajax({ url: "yourajaxurl", method: "POST", data: { /* your data */ }, success: function(response){ // execute your jQuery script here, for example: jQuery("#your-element").addClass("active"); } });

In this example, the AJAX call is made using the jQuery.ajax function, specifying the URL, method, and data. The success option is also defined, which is a function that will be called when the AJAX call is successful. In this function, you can execute your jQuery script, which can manipulate the DOM, add classes, or perform any other functionality.

You can place this code in your theme's JavaScript file or in a custom plugin. Note that the "yourajaxurl" should correspond to the URL of the PHP function that handles the AJAX call.

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-05 20:23:58 +0000

Seen: 11 times

Last updated: Jun 05 '23