Skip to content
Snippets Groups Projects
test.js 445 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);
        }
      });
    },
    delegateEvent: function(){
      mu('#delTest').on('click', '.clickme', function(e){
        console.log(this);
        console.log(e);
      });