|
- (function ($) {
- // http://davidwalsh.name/javascript-debounce-function
- function debounce(func, wait, immediate) {
- var timeout;
- return function () {
- var context = this, args = arguments;
- var later = function () {
- timeout = null;
- if (!immediate)
- func.apply(context, args);
- };
- var callNow = immediate && !timeout;
- clearTimeout(timeout);
- timeout = setTimeout(later, wait);
- if (callNow)
- func.apply(context, args);
- };
- };
-
- /*______________________________________________________*/
-
- $(function () {
- $('#test').html(mm.display_name);
- console.log(mm);
- });
-
-
- $(document).on("click", "#step1", function(){
- $.post(mm.ajax_url, { // POST request
- _ajax_nonce: mm.nonce, // nonce
- action: "list_users", // action
- client : 333,
- }, function(response, status, xhr){
- alert(response);
- }).fail(function(){
- alert('network error ');
- });
-
- });
-
- })(jQuery);
|