PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 109
Lasso Lite – Affiliate Link Manager & Product Displays v109
158 157 155 156 154 153 152 151 150 149 148 trunk 0.9.9 104 105 106 107 108 109 110 111 112 113 114 115 All 57 releases
simple-urls / admin / assets / js / settings.js

settings.js in Lasso Lite – Affiliate Link Manager & Product Displays 109, at admin/assets/js/settings.js

26 lines 603 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function() {
2 jQuery(document)
3 .on('click', '#onboarding-save-display-btn', handleSettingSave);
4
5 // A Function send the array of setting to ajax.php
6 function handleSettingSave() {
7 // Fetch all the settings
8 var settings = lasso_lite_helper.fetchAllOptions();
9
10 // Prepare data
11 var data = {
12 action: 'lasso_lite_store_settings',
13 security: lassoLiteOptionsData.optionsNonce,
14 settings: settings,
15 };
16
17 // Send the POST request
18 jQuery.post(ajaxurl, data, function (response) {
19 console.log('response', response);
20 });
21
22 go_to_next_step_action(this);
23 }
24 });
25
26