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);
}
});

Commander-lol
committed
},
delegateEvent: function(){
mu('#delTest').on('click', '.clickme', function(e){
console.log(this);
console.log(e);
});