Skip to content
Snippets Groups Projects
test.js 288 B
Newer Older
if(!mu.exists(window.muTest)){
  window.muTest = {
    postJsonResponse: function(){
      mu.ajax({
        url: 'tests/jsonresponse.php',
        method: 'POST',
        responseType: 'json',
        success: function(data){
          console.log(data);
        }
      });
    }
  }
}